Update pipeline

Use artifacts:reports:dotenv and selectively download artifacts
This commit is contained in:
Santiago Lo Coco 2023-11-12 09:16:10 -03:00
parent 5a1c7bae92
commit 7aa05f51ff
1 changed files with 12 additions and 7 deletions

View File

@ -13,8 +13,7 @@ default:
- script_failure - script_failure
- api_failure - api_failure
before_script: before_script:
- export $(cat context.env | xargs) - docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY
- docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY
stages: stages:
- prep - prep
@ -67,8 +66,8 @@ preparation:
- echo "ENV_DEV_FILE=$(echo $ENV_DEV)" >> context.env - echo "ENV_DEV_FILE=$(echo $ENV_DEV)" >> context.env
- echo "ENV_PROD_FILE=$(echo $ENV_PROD)" >> context.env - echo "ENV_PROD_FILE=$(echo $ENV_PROD)" >> context.env
artifacts: artifacts:
paths: reports:
- context.env dotenv: context.env
.build-and-push-script: &build-and-push-script .build-and-push-script: &build-and-push-script
- docker build ${FOLDER} -f ${FOLDER}/Dockerfile.prod --build-arg "${BUILD_ARG_PROD}" --build-arg "${BUILD_ARG_PROD_OTHER}" -t ${PROD_IMAGE} - docker build ${FOLDER} -f ${FOLDER}/Dockerfile.prod --build-arg "${BUILD_ARG_PROD}" --build-arg "${BUILD_ARG_PROD_OTHER}" -t ${PROD_IMAGE}
@ -323,7 +322,6 @@ test-screen-client:
- docker compose -f ${FOLDER}/docker-compose.dev.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit - docker compose -f ${FOLDER}/docker-compose.dev.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit
.test-integration-clean: &test-integration-clean .test-integration-clean: &test-integration-clean
- export $(cat context.env | xargs)
- export API_IMAGE=${FLIGHTS_INFO_TEST_IMAGE_NAME} - export API_IMAGE=${FLIGHTS_INFO_TEST_IMAGE_NAME}
- docker compose -f flights-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE down - docker compose -f flights-domain/docker-compose.dev.yml --env-file $ENV_DEV_FILE down
- export API_IMAGE=${USER_MANAGER_TEST_IMAGE_NAME} - export API_IMAGE=${USER_MANAGER_TEST_IMAGE_NAME}
@ -336,12 +334,16 @@ test-screen-client:
.needs-backend-tests: &needs-backend-tests .needs-backend-tests: &needs-backend-tests
- job: test-flights-api - job: test-flights-api
optional: true optional: true
artifacts: false
- job: test-auth-api - job: test-auth-api
optional: true optional: true
artifacts: false
- job: test-subscription-api - job: test-subscription-api
optional: true optional: true
artifacts: false
- job: test-gateway - job: test-gateway
optional: true optional: true
artifacts: false
- job: preparation - job: preparation
optional: true optional: true
artifacts: true artifacts: true
@ -363,6 +365,7 @@ test-browser-integration:
needs: needs:
- job: test-browser-client - job: test-browser-client
optional: true optional: true
artifacts: false
- *needs-backend-tests - *needs-backend-tests
test-screen-integration: test-screen-integration:
@ -382,6 +385,7 @@ test-screen-integration:
needs: needs:
- job: test-screen-client - job: test-screen-client
optional: true optional: true
artifacts: false
- job: test-browser-integration - job: test-browser-integration
optional: true optional: true
- *needs-backend-tests - *needs-backend-tests
@ -413,8 +417,10 @@ deliver-dockerhub:
needs: needs:
- job: test-browser-integration - job: test-browser-integration
optional: true optional: true
artifacts: false
- job: test-screen-integration - job: test-screen-integration
optional: true optional: true
artifacts: false
- job: preparation - job: preparation
optional: true optional: true
artifacts: true artifacts: true
@ -469,8 +475,7 @@ deploy-prod:
needs: needs:
- job: deliver-dockerhub - job: deliver-dockerhub
optional: true optional: true
- job: build-and-run-elk artifacts: false
optional: true
- job: preparation - job: preparation
optional: true optional: true
artifacts: true artifacts: true