File tree Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -2,23 +2,14 @@ version: 2
22defaults : &defaults
33 docker :
44 - image : circleci/node:6.14-stretch-browsers
5-
6- deploy_defaults : &deploy_defaults
7- docker :
8- - image : cimg/python:3.10.2
95
10- install_deploy_dependency : &install_deploy_dependency
11- name : Installation of build and deployment dependencies.
12- command : |
13- pip3 install awscli --upgrade
14-
156install_dependency : &install_dependency
167 name : Installation of build and deployment dependencies.
178 command : |
189 sudo apt update
1910 sudo apt install jq python3-pip
2011 sudo pip3 install awscli --upgrade
21- sudo pip3 install docker-compose
12+ # sudo pip3 install docker-compose
2213
2314install_deploysuite : &install_deploysuite
2415 name : Installation of install_deploysuite.
@@ -50,7 +41,7 @@ build_steps: &build_steps
5041
5142deploy_steps : &deploy_steps
5243 - checkout
53- - run : *install_deploy_dependency
44+ - run : *install_dependency
5445 - run : *install_deploysuite
5546 - attach_workspace :
5647 at : .
@@ -74,15 +65,15 @@ jobs:
7465 steps : *build_steps
7566
7667 deploy_prod :
77- << : *deploy_defaults
68+ << : *defaults
7869 environment :
7970 BUILD_ENV : " prod"
8071 DEPLOY_ENV : " PROD"
8172 BUCKET_NAME : " admin.topcoder.com"
8273 steps : *deploy_steps
8374
8475 deploy_dev :
85- << : *deploy_defaults
76+ << : *defaults
8677 environment :
8778 BUILD_ENV : " dev"
8879 DEPLOY_ENV : " DEV"
You can’t perform that action at this time.
0 commit comments