Commit c5e19713 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

KPI Management:

- Activated CI/CD build and unitary test
parent 2ea824bf
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -46,6 +46,8 @@ include:
  - local: '/src/load_generator/.gitlab-ci.yml'
  - local: '/src/bgpls_speaker/.gitlab-ci.yml'
  - local: '/src/kpi_manager/.gitlab-ci.yml'
  - local: '/src/kpi_value_api/.gitlab-ci.yml'
  - local: '/src/kpi_value_writer/.gitlab-ci.yml'

  # This should be last one: end-to-end integration tests
  - local: '/src/tests/.gitlab-ci.yml'
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
# Build, tag, and push the Docker image to the GitLab Docker registry
build kpi-manager:
  variables:
    IMAGE_NAME: 'kpi-manager' # name of the microservice
    IMAGE_NAME: 'kpi_manager' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: build
  before_script:
@@ -41,7 +41,7 @@ build kpi-manager:
# Apply unit test to the component
unit_test kpi-manager:
  variables:
    IMAGE_NAME: 'kpi-manager' # name of the microservice
    IMAGE_NAME: 'kpi_manager' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: unit_test
  needs:
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
# Build, tag, and push the Docker image to the GitLab Docker registry
build kpi-value-api:
  variables:
    IMAGE_NAME: 'kpi-value-api' # name of the microservice
    IMAGE_NAME: 'kpi_value_api' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: build
  before_script:
@@ -41,7 +41,7 @@ build kpi-value-api:
# Apply unit test to the component
unit_test kpi-value-api:
  variables:
    IMAGE_NAME: 'kpi-value-api' # name of the microservice
    IMAGE_NAME: 'kpi_value_api' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: unit_test
  needs:
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
# Build, tag, and push the Docker image to the GitLab Docker registry
build kpi-value-writer:
  variables:
    IMAGE_NAME: 'kpi-value-writer' # name of the microservice
    IMAGE_NAME: 'kpi_value_writer' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: build
  before_script:
@@ -41,7 +41,7 @@ build kpi-value-writer:
# Apply unit test to the component
unit_test kpi-value-writer:
  variables:
    IMAGE_NAME: 'kpi-value-writer' # name of the microservice
    IMAGE_NAME: 'kpi_value_writer' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: unit_test
  needs: