Skip to content

Commit

Permalink
Merge pull request #6346 from topcoder-platform/circleci-fix
Browse files Browse the repository at this point in the history
CircleCI - Timeout fix
  • Loading branch information
luizrrodrigues authored May 18, 2022
2 parents 7e01e56 + 048c5ca commit 21e1fd0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ build_docker_image: &build_docker_image
command: |
source buildenvvar
./build.sh
no_output_timeout: 20m
jobs:
# Build & Deploy against development backend
"build-dev":
Expand Down Expand Up @@ -286,7 +287,10 @@ jobs:
- checkout
- restore_cache:
key: test-node-modules-{{ checksum "package-lock.json" }}
- run: npm install
- run:
name: App npm install
command: npm install
no_output_timeout: 20m
- save_cache:
key: test-node-modules-{{ checksum "package-lock.json" }}
paths:
Expand Down Expand Up @@ -349,7 +353,7 @@ workflows:
filters:
branches:
only:
- free
- circleci-fix
# This is alternate dev env for parallel testing
- "build-qa":
context : org-global
Expand Down

0 comments on commit 21e1fd0

Please sign in to comment.