File tree 3 files changed +5273
-5288
lines changed
3 files changed +5273
-5288
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ build_docker_image: &build_docker_image
45
45
command : |
46
46
source buildenvvar
47
47
./build.sh
48
+ no_output_timeout : 20m
48
49
jobs :
49
50
# Build & Deploy against development backend
50
51
" build-dev " :
@@ -286,7 +287,13 @@ jobs:
286
287
- checkout
287
288
- restore_cache :
288
289
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
290
297
- save_cache :
291
298
key : test-node-modules-{{ checksum "package-lock.json" }}
292
299
paths :
@@ -342,14 +349,14 @@ workflows:
342
349
filters :
343
350
branches :
344
351
only :
345
- - develop
352
+ - free
346
353
# This is alternate dev env for parallel testing
347
354
- " build-test " :
348
355
context : org-global
349
356
filters :
350
357
branches :
351
358
only :
352
- - free
359
+ - circleci-fix
353
360
# This is alternate dev env for parallel testing
354
361
- " build-qa " :
355
362
context : org-global
Original file line number Diff line number Diff line change @@ -147,6 +147,7 @@ ENV OPTIMIZELY_SDK_KEY=$OPTIMIZELY_SDK_KEY
147
147
# Testing and build of the application inside the container.
148
148
149
149
RUN npm config set unsafe-perm true
150
+ RUN git config --global url."https://git@" .insteadOf git://
150
151
RUN npm install
151
152
RUN npm test
152
153
RUN npm run build
You can’t perform that action at this time.
0 commit comments