Skip to content

Commit 21e1fd0

Browse files
Merge pull request #6346 from topcoder-platform/circleci-fix
CircleCI - Timeout fix
2 parents 7e01e56 + 048c5ca commit 21e1fd0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.circleci/config.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ build_docker_image: &build_docker_image
4545
command: |
4646
source buildenvvar
4747
./build.sh
48+
no_output_timeout: 20m
4849
jobs:
4950
# Build & Deploy against development backend
5051
"build-dev":
@@ -286,7 +287,10 @@ jobs:
286287
- checkout
287288
- restore_cache:
288289
key: test-node-modules-{{ checksum "package-lock.json" }}
289-
- run: npm install
290+
- run:
291+
name: App npm install
292+
command: npm install
293+
no_output_timeout: 20m
290294
- save_cache:
291295
key: test-node-modules-{{ checksum "package-lock.json" }}
292296
paths:
@@ -349,7 +353,7 @@ workflows:
349353
filters:
350354
branches:
351355
only:
352-
- free
356+
- circleci-fix
353357
# This is alternate dev env for parallel testing
354358
- "build-qa":
355359
context : org-global

0 commit comments

Comments
 (0)