Skip to content

Commit 8889213

Browse files
Merge pull request #6351 from topcoder-platform/develop
Release v1.16.0 - CircleCI - Deployment fail
2 parents 587fc0f + aead278 commit 8889213

File tree

3 files changed

+5273
-5288
lines changed

3 files changed

+5273
-5288
lines changed

.circleci/config.yml

+10-3
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,13 @@ jobs:
286287
- checkout
287288
- restore_cache:
288289
key: test-node-modules-{{ checksum "package-lock.json" }}
289-
- run: npm install
290+
- run:
291+
name: Config Git
292+
command: git config --global url."https://git@".insteadOf git://
293+
- run:
294+
name: App npm install
295+
command: npm install
296+
no_output_timeout: 20m
290297
- save_cache:
291298
key: test-node-modules-{{ checksum "package-lock.json" }}
292299
paths:
@@ -342,14 +349,14 @@ workflows:
342349
filters:
343350
branches:
344351
only:
345-
- develop
352+
- free
346353
# This is alternate dev env for parallel testing
347354
- "build-test":
348355
context : org-global
349356
filters:
350357
branches:
351358
only:
352-
- free
359+
- circleci-fix
353360
# This is alternate dev env for parallel testing
354361
- "build-qa":
355362
context : org-global

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ ENV OPTIMIZELY_SDK_KEY=$OPTIMIZELY_SDK_KEY
147147
# Testing and build of the application inside the container.
148148

149149
RUN npm config set unsafe-perm true
150+
RUN git config --global url."https://git@".insteadOf git://
150151
RUN npm install
151152
RUN npm test
152153
RUN npm run build

0 commit comments

Comments
 (0)