2020-06-23 00:09:42 +05:30
|
|
|
# This template is deprecated and will be removed as part of GitLab 13.2!
|
|
|
|
#
|
|
|
|
# If you have referenced this template in your CI pipeline, please
|
|
|
|
# update your CI configuration by replacing the following occurrence(s):
|
|
|
|
#
|
|
|
|
# template: Deploy-ECS.gitlab-ci.yml
|
|
|
|
#
|
|
|
|
# with
|
|
|
|
#
|
|
|
|
# template: AWS/Deploy-ECS.gitlab-ci.yml
|
|
|
|
#
|
|
|
|
# --------------------
|
|
|
|
#
|
|
|
|
# Documentation: https://docs.gitlab.com/ee/ci/cloud_deployment/#deploy-your-application-to-the-aws-elastic-container-service-ecs
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- test
|
|
|
|
- review
|
|
|
|
- deploy
|
|
|
|
- production
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
before_script:
|
|
|
|
- printf '\nWARNING!\nThis job includes "Deploy-ECS.gitlab-ci.yml". Please rename this to "AWS/Deploy-ECS.gitlab-ci.yml".\n'
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
variables:
|
|
|
|
AUTO_DEVOPS_PLATFORM_TARGET: ECS
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
include:
|
|
|
|
- template: Jobs/Build.gitlab-ci.yml
|
2020-05-24 23:13:21 +05:30
|
|
|
- template: Jobs/Deploy/ECS.gitlab-ci.yml
|