|
|
|
@ -123,11 +123,12 @@ test-auth-api:
|
|
|
|
|
script:
|
|
|
|
|
- export $(cat context.env | xargs)
|
|
|
|
|
|
|
|
|
|
- export API_IMAGE=$BROWSER_CLIENT_TEST_IMAGE_NAME
|
|
|
|
|
- export API_IMAGE=$USER_MANAGER_TEST_IMAGE_NAME
|
|
|
|
|
- export CLIENT_IMAGE=dummy-image
|
|
|
|
|
|
|
|
|
|
- docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY
|
|
|
|
|
|
|
|
|
|
- docker compose -f auth-domain/docker-compose.yml --env-file $ENV_DEV_FILE down
|
|
|
|
|
- docker compose -f auth-domain/docker-compose.yml --env-file $ENV_DEV_FILE pull
|
|
|
|
|
- docker compose -f auth-domain/docker-compose.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit --renew-anon-volumes
|
|
|
|
|
- docker cp fids_usermanager_api:/usr/src/app/coverage.xml .
|
|
|
|
@ -156,6 +157,7 @@ test-flights-api:
|
|
|
|
|
|
|
|
|
|
- docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY
|
|
|
|
|
|
|
|
|
|
- docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE down
|
|
|
|
|
- docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE pull
|
|
|
|
|
- docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit --renew-anon-volumes
|
|
|
|
|
- docker cp fids_flights_api:/usr/src/app/coverage.xml .
|
|
|
|
@ -180,15 +182,55 @@ test-integration:
|
|
|
|
|
- export $(cat context.env | xargs)
|
|
|
|
|
- docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY
|
|
|
|
|
|
|
|
|
|
- export API_IMAGE=$API_TEST_IMAGE_NAME
|
|
|
|
|
- export CLIENT_IMAGE=$CLIENT_TEST_IMAGE_NAME
|
|
|
|
|
- export API_IMAGE=$FLIGHTS_INFO_TEST_IMAGE_NAME
|
|
|
|
|
- export TEST_TARGET=INTEGRATION
|
|
|
|
|
# - docker compose -f docker-compose.yml --env-file $ENV_DEV_FILE pull
|
|
|
|
|
# - docker compose -f docker-compose.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit
|
|
|
|
|
- docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE down
|
|
|
|
|
- docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE pull
|
|
|
|
|
- docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit
|
|
|
|
|
|
|
|
|
|
- export API_IMAGE=$USER_MANAGER_TEST_IMAGE_NAME
|
|
|
|
|
- export TEST_TARGET=INTEGRATION
|
|
|
|
|
- docker compose -f auth-domain/docker-compose.yml --env-file $ENV_DEV_FILE down
|
|
|
|
|
- docker compose -f auth-domain/docker-compose.yml --env-file $ENV_DEV_FILE pull
|
|
|
|
|
- docker compose -f auth-domain/docker-compose.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit
|
|
|
|
|
needs:
|
|
|
|
|
- job: test-flights-api
|
|
|
|
|
- job: test-auth-api
|
|
|
|
|
- job: preparation
|
|
|
|
|
artifacts: true
|
|
|
|
|
|
|
|
|
|
test-browser-integration:
|
|
|
|
|
stage: test
|
|
|
|
|
tags:
|
|
|
|
|
- dev
|
|
|
|
|
script:
|
|
|
|
|
- export $(cat context.env | xargs)
|
|
|
|
|
- docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY
|
|
|
|
|
|
|
|
|
|
- export CLIENT_IMAGE=$BROWSER_CLIENT_TEST_IMAGE_NAME
|
|
|
|
|
- docker compose -f browser-domain/docker-compose.yml --env-file $ENV_DEV_FILE down
|
|
|
|
|
- docker compose -f browser-domain/docker-compose.yml --env-file $ENV_DEV_FILE pull
|
|
|
|
|
- docker compose -f browser-domain/docker-compose.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit
|
|
|
|
|
needs:
|
|
|
|
|
- job: test-integration
|
|
|
|
|
- job: build-browser-client
|
|
|
|
|
- job: preparation
|
|
|
|
|
artifacts: true
|
|
|
|
|
|
|
|
|
|
test-screen-integration:
|
|
|
|
|
stage: test
|
|
|
|
|
tags:
|
|
|
|
|
- dev
|
|
|
|
|
script:
|
|
|
|
|
- export $(cat context.env | xargs)
|
|
|
|
|
- docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY
|
|
|
|
|
|
|
|
|
|
- export CLIENT_IMAGE=$SCREEN_CLIENT_TEST_IMAGE_NAME
|
|
|
|
|
- docker compose -f screen-domain/docker-compose.yml --env-file $ENV_DEV_FILE down
|
|
|
|
|
- docker compose -f screen-domain/docker-compose.yml --env-file $ENV_DEV_FILE pull
|
|
|
|
|
- docker compose -f screen-domain/docker-compose.yml --env-file $ENV_DEV_FILE up --abort-on-container-exit
|
|
|
|
|
needs:
|
|
|
|
|
- job: test-integration
|
|
|
|
|
- job: build-screen-client
|
|
|
|
|
- job: preparation
|
|
|
|
|
artifacts: true
|
|
|
|
@ -213,7 +255,8 @@ deliver-dockerhub:
|
|
|
|
|
- docker push $DOCKER_HUB_BROWSER_CLIENT_IMAGE
|
|
|
|
|
- docker push $DOCKER_HUB_SCREEN_CLIENT_IMAGE
|
|
|
|
|
needs:
|
|
|
|
|
- job: test-integration
|
|
|
|
|
- job: test-screen-integration
|
|
|
|
|
- job: test-browser-integration
|
|
|
|
|
- job: preparation
|
|
|
|
|
artifacts: true
|
|
|
|
|
|
|
|
|
|