Skip to content

Commit 546879a

Browse files
authored
Update config.yml
1 parent 83266e2 commit 546879a

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

.circleci/config.yml

+4-13
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,14 @@ 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
95

10-
install_deploy_dependency: &install_deploy_dependency
11-
name: Installation of build and deployment dependencies.
12-
command: |
13-
pip3 install awscli --upgrade
14-
156
install_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
2314
install_deploysuite: &install_deploysuite
2415
name: Installation of install_deploysuite.
@@ -50,7 +41,7 @@ build_steps: &build_steps
5041

5142
deploy_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"

0 commit comments

Comments
 (0)