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

CI/CD pipeline

- reduced dependencies since it breaks pipeline
parent 580088c1
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -18,10 +18,7 @@ stages:
  - build
  - build
  - test
  - unit_test_stage1
  - unit_test_stage2
  - unit_test_stage3
  - unit_test_stage4
  - unit_test
  #- deploy
  #- end2end_test

+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ build automation:
unit_test automation:
  variables:
    REPORTS_CONTAINER: "${IMAGE_NAME}-reports"
  stage: unit_test_stage1
  stage: unit_test
  needs:
    - build automation
  before_script:
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ unit_test compute:
  variables:
    IMAGE_NAME: 'compute' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: unit_test_stage1
  stage: unit_test
  needs:
    - build compute
  before_script:
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ unit_test context:
  variables:
    IMAGE_NAME: 'context' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: unit_test_stage1
  stage: unit_test
  needs:
    - build context
  before_script:
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ unit_test device:
  variables:
    IMAGE_NAME: 'device' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: unit_test_stage1
  stage: unit_test
  needs:
    - build device
  before_script:
Loading