Skip to content

Commit 9d56ab9

Browse files
committed
Fix for debian
1 parent 14a77af commit 9d56ab9

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

.circleci/config.yml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,15 @@ jobs:
4646
command: |
4747
apk add --no-cache jq py-pip sudo
4848
sudo pip install awscli --upgrade
49-
- run: ./build.sh DEV
50-
- run: ./deploy.sh DEV
49+
- run:
50+
name: Building
51+
command: |
52+
set +e
53+
./build.sh DEV
54+
- run:
55+
name: Deploying
56+
command: |
57+
./deploy.sh DEV
5158
deployProd:
5259
docker:
5360
- image: docker:17.06.1-ce-git
@@ -64,8 +71,15 @@ jobs:
6471
command: |
6572
apk add --no-cache jq py-pip sudo
6673
sudo pip install awscli --upgrade
67-
- run: ./build.sh PROD
68-
- run: ./deploy.sh PROD
74+
- run:
75+
name: Building
76+
command: |
77+
set +e
78+
./build.sh PROD
79+
- run:
80+
name: Deploying
81+
command: |
82+
./deploy.sh PROD
6983
workflows:
7084
version: 2
7185
build:

0 commit comments

Comments
 (0)