File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,24 @@ 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
9+
10+ install_deploy_dependency : &install_deploy_dependency
11+ name : Installation of build and deployment dependencies.
12+ command : |
13+ pip3 install awscli --upgrade
14+
515install_dependency : &install_dependency
616 name : Installation of build and deployment dependencies.
717 command : |
818 sudo apt update
919 sudo apt install jq python3-pip
1020 sudo pip3 install awscli --upgrade
1121 sudo pip3 install docker-compose
22+
1223install_deploysuite : &install_deploysuite
1324 name : Installation of install_deploysuite.
1425 command : |
@@ -39,7 +50,7 @@ build_steps: &build_steps
3950
4051deploy_steps : &deploy_steps
4152 - checkout
42- - run : *install_dependency
53+ - run : *install_deploy_dependency
4354 - run : *install_deploysuite
4455 - attach_workspace :
4556 at : .
You can’t perform that action at this time.
0 commit comments