@catladder/pipeline 1.129.1 → 1.130.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build/node/testJob.js +2 -2
- package/dist/build/node/yarn.js +1 -1
- package/dist/bundles/catladder-gitlab/index.js +1 -1
- package/dist/constants.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/cloud-run-memory-limit.ts.snap +32 -16
- package/examples/__snapshots__/cloud-run-meteor-with-worker.ts.snap +32 -16
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.ts.snap +32 -16
- package/examples/__snapshots__/cloud-run-non-public.ts.snap +32 -16
- package/examples/__snapshots__/cloud-run-post-stop-job.ts.snap +32 -16
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.ts.snap +64 -32
- package/examples/__snapshots__/cloud-run-with-sql.ts.snap +64 -32
- package/examples/__snapshots__/cloud-run-with-worker.ts.snap +32 -16
- package/examples/__snapshots__/custom-deploy.ts.snap +32 -16
- package/examples/__snapshots__/custom-envs.ts.snap +36 -20
- package/examples/__snapshots__/kubernetes-application-customization.ts.snap +32 -16
- package/examples/__snapshots__/kubernetes-with-cloud-sql-legacy.ts.snap +32 -16
- package/examples/__snapshots__/kubernetes-with-cloud-sql.ts.snap +32 -16
- package/examples/__snapshots__/kubernetes-with-jobs.ts.snap +64 -32
- package/examples/__snapshots__/kubernetes-with-mongodb.ts.snap +32 -16
- package/examples/__snapshots__/meteor-kubernetes.ts.snap +32 -16
- package/examples/__snapshots__/native-app.ts.snap +64 -32
- package/examples/__snapshots__/node-build-with-custom-image.ts.snap +32 -16
- package/examples/__snapshots__/wait-for-other-deploy.ts.snap +64 -32
- package/package.json +1 -1
- package/src/build/node/testJob.ts +3 -1
- package/src/build/node/yarn.ts +10 -7
|
@@ -33,14 +33,18 @@ exports[`matches snapshot 1`] = `
|
|
|
33
33
|
],
|
|
34
34
|
},
|
|
35
35
|
"script": [
|
|
36
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
37
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
38
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
39
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
36
40
|
"cd api",
|
|
37
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
38
41
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
39
42
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
40
43
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
41
44
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
45
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
42
46
|
"yarn install --immutable",
|
|
43
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
47
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
44
48
|
"yarn lint",
|
|
45
49
|
],
|
|
46
50
|
"stage": "test",
|
|
@@ -105,13 +109,13 @@ exports[`matches snapshot 1`] = `
|
|
|
105
109
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
106
110
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
107
111
|
"cd api",
|
|
108
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
109
112
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
110
113
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
111
114
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
112
115
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
116
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
113
117
|
"yarn install --immutable",
|
|
114
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
118
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
115
119
|
"yarn build",
|
|
116
120
|
],
|
|
117
121
|
"stage": "build",
|
|
@@ -438,14 +442,18 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
438
442
|
],
|
|
439
443
|
},
|
|
440
444
|
"script": [
|
|
445
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
446
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
447
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
448
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
441
449
|
"cd api",
|
|
442
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
443
450
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
444
451
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
445
452
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
446
453
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
454
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
447
455
|
"yarn install --immutable",
|
|
448
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
456
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
449
457
|
"yarn test",
|
|
450
458
|
],
|
|
451
459
|
"stage": "test",
|
|
@@ -581,14 +589,18 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
581
589
|
],
|
|
582
590
|
},
|
|
583
591
|
"script": [
|
|
592
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
593
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
594
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
595
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
584
596
|
"cd api",
|
|
585
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
586
597
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
587
598
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
588
599
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
589
600
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
601
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
590
602
|
"yarn install --immutable",
|
|
591
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
603
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
592
604
|
"yarn lint",
|
|
593
605
|
],
|
|
594
606
|
"stage": "test",
|
|
@@ -653,13 +665,13 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
653
665
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
654
666
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
655
667
|
"cd api",
|
|
656
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
657
668
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
658
669
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
659
670
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
660
671
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
672
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
661
673
|
"yarn install --immutable",
|
|
662
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
674
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
663
675
|
"yarn build",
|
|
664
676
|
],
|
|
665
677
|
"stage": "build",
|
|
@@ -992,14 +1004,18 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
992
1004
|
],
|
|
993
1005
|
},
|
|
994
1006
|
"script": [
|
|
1007
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1008
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1009
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1010
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
995
1011
|
"cd api",
|
|
996
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
997
1012
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
998
1013
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
999
1014
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1000
1015
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1016
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1001
1017
|
"yarn install --immutable",
|
|
1002
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1018
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1003
1019
|
"yarn test",
|
|
1004
1020
|
],
|
|
1005
1021
|
"stage": "test",
|
|
@@ -1160,13 +1176,13 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
1160
1176
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1161
1177
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1162
1178
|
"cd api",
|
|
1163
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1164
1179
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1165
1180
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1166
1181
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1167
1182
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1183
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1168
1184
|
"yarn install --immutable",
|
|
1169
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1185
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1170
1186
|
"yarn build",
|
|
1171
1187
|
],
|
|
1172
1188
|
"stage": "build",
|
|
@@ -1244,13 +1260,13 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
1244
1260
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1245
1261
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1246
1262
|
"cd api",
|
|
1247
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1248
1263
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1249
1264
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1250
1265
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1251
1266
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1267
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1252
1268
|
"yarn install --immutable",
|
|
1253
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1269
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1254
1270
|
"yarn build",
|
|
1255
1271
|
],
|
|
1256
1272
|
"stage": "build",
|
|
@@ -33,14 +33,18 @@ exports[`matches snapshot 1`] = `
|
|
|
33
33
|
],
|
|
34
34
|
},
|
|
35
35
|
"script": [
|
|
36
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
37
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
38
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
39
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
36
40
|
"cd api",
|
|
37
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
38
41
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
39
42
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
40
43
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
41
44
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
45
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
42
46
|
"yarn install --immutable",
|
|
43
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
47
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
44
48
|
"yarn lint",
|
|
45
49
|
],
|
|
46
50
|
"stage": "test",
|
|
@@ -105,13 +109,13 @@ exports[`matches snapshot 1`] = `
|
|
|
105
109
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
106
110
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
107
111
|
"cd api",
|
|
108
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
109
112
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
110
113
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
111
114
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
112
115
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
116
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
113
117
|
"yarn install --immutable",
|
|
114
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
118
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
115
119
|
"yarn build",
|
|
116
120
|
],
|
|
117
121
|
"stage": "build",
|
|
@@ -438,14 +442,18 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
438
442
|
],
|
|
439
443
|
},
|
|
440
444
|
"script": [
|
|
445
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
446
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
447
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
448
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
441
449
|
"cd api",
|
|
442
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
443
450
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
444
451
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
445
452
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
446
453
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
454
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
447
455
|
"yarn install --immutable",
|
|
448
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
456
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
449
457
|
"yarn test",
|
|
450
458
|
],
|
|
451
459
|
"stage": "test",
|
|
@@ -581,14 +589,18 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
581
589
|
],
|
|
582
590
|
},
|
|
583
591
|
"script": [
|
|
592
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
593
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
594
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
595
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
584
596
|
"cd api",
|
|
585
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
586
597
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
587
598
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
588
599
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
589
600
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
601
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
590
602
|
"yarn install --immutable",
|
|
591
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
603
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
592
604
|
"yarn lint",
|
|
593
605
|
],
|
|
594
606
|
"stage": "test",
|
|
@@ -653,13 +665,13 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
653
665
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
654
666
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
655
667
|
"cd api",
|
|
656
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
657
668
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
658
669
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
659
670
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
660
671
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
672
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
661
673
|
"yarn install --immutable",
|
|
662
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
674
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
663
675
|
"yarn build",
|
|
664
676
|
],
|
|
665
677
|
"stage": "build",
|
|
@@ -992,14 +1004,18 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
992
1004
|
],
|
|
993
1005
|
},
|
|
994
1006
|
"script": [
|
|
1007
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1008
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1009
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1010
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
995
1011
|
"cd api",
|
|
996
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
997
1012
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
998
1013
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
999
1014
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1000
1015
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1016
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1001
1017
|
"yarn install --immutable",
|
|
1002
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1018
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1003
1019
|
"yarn test",
|
|
1004
1020
|
],
|
|
1005
1021
|
"stage": "test",
|
|
@@ -1160,13 +1176,13 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
1160
1176
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1161
1177
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1162
1178
|
"cd api",
|
|
1163
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1164
1179
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1165
1180
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1166
1181
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1167
1182
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1183
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1168
1184
|
"yarn install --immutable",
|
|
1169
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1185
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1170
1186
|
"yarn build",
|
|
1171
1187
|
],
|
|
1172
1188
|
"stage": "build",
|
|
@@ -1244,13 +1260,13 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
1244
1260
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1245
1261
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1246
1262
|
"cd api",
|
|
1247
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1248
1263
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1249
1264
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1250
1265
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1251
1266
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1267
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1252
1268
|
"yarn install --immutable",
|
|
1253
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1269
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1254
1270
|
"yarn build",
|
|
1255
1271
|
],
|
|
1256
1272
|
"stage": "build",
|
|
@@ -33,14 +33,18 @@ exports[`matches snapshot 1`] = `
|
|
|
33
33
|
],
|
|
34
34
|
},
|
|
35
35
|
"script": [
|
|
36
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
37
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
38
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
39
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
36
40
|
"cd api",
|
|
37
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
38
41
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
39
42
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
40
43
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
41
44
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
45
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
42
46
|
"yarn install --immutable",
|
|
43
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
47
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
44
48
|
"yarn lint",
|
|
45
49
|
],
|
|
46
50
|
"stage": "test",
|
|
@@ -105,13 +109,13 @@ exports[`matches snapshot 1`] = `
|
|
|
105
109
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
106
110
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
107
111
|
"cd api",
|
|
108
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
109
112
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
110
113
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
111
114
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
112
115
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
116
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
113
117
|
"yarn install --immutable",
|
|
114
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
118
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
115
119
|
"yarn build",
|
|
116
120
|
],
|
|
117
121
|
"stage": "build",
|
|
@@ -438,14 +442,18 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
438
442
|
],
|
|
439
443
|
},
|
|
440
444
|
"script": [
|
|
445
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
446
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
447
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
448
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
441
449
|
"cd api",
|
|
442
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
443
450
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
444
451
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
445
452
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
446
453
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
454
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
447
455
|
"yarn install --immutable",
|
|
448
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
456
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
449
457
|
"yarn test",
|
|
450
458
|
],
|
|
451
459
|
"stage": "test",
|
|
@@ -581,14 +589,18 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
581
589
|
],
|
|
582
590
|
},
|
|
583
591
|
"script": [
|
|
592
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
593
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
594
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
595
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
584
596
|
"cd api",
|
|
585
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
586
597
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
587
598
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
588
599
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
589
600
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
601
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
590
602
|
"yarn install --immutable",
|
|
591
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
603
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
592
604
|
"yarn lint",
|
|
593
605
|
],
|
|
594
606
|
"stage": "test",
|
|
@@ -653,13 +665,13 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
653
665
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
654
666
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
655
667
|
"cd api",
|
|
656
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
657
668
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
658
669
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
659
670
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
660
671
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
672
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
661
673
|
"yarn install --immutable",
|
|
662
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
674
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
663
675
|
"yarn build",
|
|
664
676
|
],
|
|
665
677
|
"stage": "build",
|
|
@@ -1002,14 +1014,18 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
1002
1014
|
],
|
|
1003
1015
|
},
|
|
1004
1016
|
"script": [
|
|
1017
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1018
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1019
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1020
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1005
1021
|
"cd api",
|
|
1006
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1007
1022
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1008
1023
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1009
1024
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1010
1025
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1026
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1011
1027
|
"yarn install --immutable",
|
|
1012
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1028
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1013
1029
|
"yarn test",
|
|
1014
1030
|
],
|
|
1015
1031
|
"stage": "test",
|
|
@@ -1170,13 +1186,13 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
1170
1186
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1171
1187
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1172
1188
|
"cd api",
|
|
1173
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1174
1189
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1175
1190
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1176
1191
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1177
1192
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1193
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1178
1194
|
"yarn install --immutable",
|
|
1179
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1195
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1180
1196
|
"yarn build",
|
|
1181
1197
|
],
|
|
1182
1198
|
"stage": "build",
|
|
@@ -1254,13 +1270,13 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
1254
1270
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1255
1271
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1256
1272
|
"cd api",
|
|
1257
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1258
1273
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1259
1274
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1260
1275
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1261
1276
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1277
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1262
1278
|
"yarn install --immutable",
|
|
1263
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1279
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1264
1280
|
"yarn build",
|
|
1265
1281
|
],
|
|
1266
1282
|
"stage": "build",
|