Skip to content

Commit

Permalink
Merge pull request #6351 from topcoder-platform/develop
Browse files Browse the repository at this point in the history
Release v1.16.0 - CircleCI - Deployment fail
  • Loading branch information
luizrrodrigues authored May 20, 2022
2 parents 587fc0f + aead278 commit 8889213
Show file tree
Hide file tree
Showing 3 changed files with 5,273 additions and 5,288 deletions.
13 changes: 10 additions & 3 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,13 @@ jobs:
- checkout
- restore_cache:
key: test-node-modules-{{ checksum "package-lock.json" }}
- run: npm install
- run:
name: Config Git
command: git config --global url."https://git@".insteadOf git://
- 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 @@ -342,14 +349,14 @@ workflows:
filters:
branches:
only:
- develop
- free
# This is alternate dev env for parallel testing
- "build-test":
context : org-global
filters:
branches:
only:
- free
- circleci-fix
# This is alternate dev env for parallel testing
- "build-qa":
context : org-global
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ ENV OPTIMIZELY_SDK_KEY=$OPTIMIZELY_SDK_KEY
# Testing and build of the application inside the container.

RUN npm config set unsafe-perm true
RUN git config --global url."https://git@".insteadOf git://
RUN npm install
RUN npm test
RUN npm run build
Expand Down
Loading

0 comments on commit 8889213

Please sign in to comment.