Skip to content

Commit d20fc5d

Browse files
authored
Update config.yml
1 parent 1b16a1f commit d20fc5d

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.circleci/config.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,24 @@ version: 2
22
defaults: &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+
515
install_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+
1223
install_deploysuite: &install_deploysuite
1324
name: Installation of install_deploysuite.
1425
command: |
@@ -39,7 +50,7 @@ build_steps: &build_steps
3950

4051
deploy_steps: &deploy_steps
4152
- checkout
42-
- run: *install_dependency
53+
- run: *install_deploy_dependency
4354
- run: *install_deploysuite
4455
- attach_workspace:
4556
at: .

0 commit comments

Comments
 (0)