Commit 0ed94dd6 authored by Alberto Gonzalez Barneo's avatar Alberto Gonzalez Barneo
Browse files

Fixed bugs

parent d56ddc30
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
stages:
  #- dependencies
  - build
  - prepare
  - unit_test
  - end2end_test

+6 −6
Original line number Diff line number Diff line
# Copyright 2022-2024 ETSI OSG/SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
# Copyright 2022-2024 ETSI OSG/SDG TeraFlowSDN (TFS)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -13,10 +13,10 @@
# limitations under the License.

# Build, tag, and push the Docker image to the GitLab Docker registry
build device:
build_device:
  variables:
    IMAGE_NAME: 'device' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
    IMAGE_NAME: 'device'
    IMAGE_TAG: 'latest'
  stage: build
  before_script:
    - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
@@ -77,8 +77,8 @@ deploy_mock_qkd_nodes:
# Apply unit test to the component
unit_test_device:
  variables:
    IMAGE_NAME: 'device' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
    IMAGE_NAME: 'device'
    IMAGE_TAG: 'latest'
  stage: unit_test
  needs:
    - build_device