@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
|
@@ -134,14 +134,18 @@ cloudsql:
|
|
|
134
134
|
],
|
|
135
135
|
},
|
|
136
136
|
"script": [
|
|
137
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
138
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
139
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
140
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
137
141
|
"cd api",
|
|
138
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
139
142
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
140
143
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
141
144
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
142
145
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
146
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
143
147
|
"yarn install --immutable",
|
|
144
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
148
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
145
149
|
"yarn lint",
|
|
146
150
|
],
|
|
147
151
|
"stage": "test",
|
|
@@ -206,13 +210,13 @@ cloudsql:
|
|
|
206
210
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
207
211
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
208
212
|
"cd api",
|
|
209
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
210
213
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
211
214
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
212
215
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
213
216
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
217
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
214
218
|
"yarn install --immutable",
|
|
215
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
219
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
216
220
|
"yarn build",
|
|
217
221
|
],
|
|
218
222
|
"stage": "build",
|
|
@@ -608,14 +612,18 @@ cloudsql:
|
|
|
608
612
|
],
|
|
609
613
|
},
|
|
610
614
|
"script": [
|
|
615
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
616
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
617
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
618
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
611
619
|
"cd api",
|
|
612
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
613
620
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
614
621
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
615
622
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
616
623
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
624
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
617
625
|
"yarn install --immutable",
|
|
618
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
626
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
619
627
|
"yarn test",
|
|
620
628
|
],
|
|
621
629
|
"stage": "test",
|
|
@@ -852,14 +860,18 @@ cloudsql:
|
|
|
852
860
|
],
|
|
853
861
|
},
|
|
854
862
|
"script": [
|
|
863
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
864
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
865
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
866
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
855
867
|
"cd api",
|
|
856
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
857
868
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
858
869
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
859
870
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
860
871
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
872
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
861
873
|
"yarn install --immutable",
|
|
862
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
874
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
863
875
|
"yarn lint",
|
|
864
876
|
],
|
|
865
877
|
"stage": "test",
|
|
@@ -924,13 +936,13 @@ cloudsql:
|
|
|
924
936
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
925
937
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
926
938
|
"cd api",
|
|
927
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
928
939
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
929
940
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
930
941
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
931
942
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
943
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
932
944
|
"yarn install --immutable",
|
|
933
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
945
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
934
946
|
"yarn build",
|
|
935
947
|
],
|
|
936
948
|
"stage": "build",
|
|
@@ -1326,14 +1338,18 @@ cloudsql:
|
|
|
1326
1338
|
],
|
|
1327
1339
|
},
|
|
1328
1340
|
"script": [
|
|
1341
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1342
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1343
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1344
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1329
1345
|
"cd api",
|
|
1330
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1331
1346
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1332
1347
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1333
1348
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1334
1349
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1350
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1335
1351
|
"yarn install --immutable",
|
|
1336
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1352
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1337
1353
|
"yarn test",
|
|
1338
1354
|
],
|
|
1339
1355
|
"stage": "test",
|
|
@@ -1696,13 +1712,13 @@ cloudsql:
|
|
|
1696
1712
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1697
1713
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1698
1714
|
"cd api",
|
|
1699
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1700
1715
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1701
1716
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1702
1717
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1703
1718
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1719
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1704
1720
|
"yarn install --immutable",
|
|
1705
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1721
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1706
1722
|
"yarn build",
|
|
1707
1723
|
],
|
|
1708
1724
|
"stage": "build",
|
|
@@ -1783,13 +1799,13 @@ cloudsql:
|
|
|
1783
1799
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1784
1800
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1785
1801
|
"cd api",
|
|
1786
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1787
1802
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1788
1803
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1789
1804
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1790
1805
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1806
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1791
1807
|
"yarn install --immutable",
|
|
1792
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1808
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1793
1809
|
"yarn build",
|
|
1794
1810
|
],
|
|
1795
1811
|
"stage": "build",
|
|
@@ -135,14 +135,18 @@ cloudsql:
|
|
|
135
135
|
],
|
|
136
136
|
},
|
|
137
137
|
"script": [
|
|
138
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
139
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
140
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
141
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
138
142
|
"cd api",
|
|
139
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
140
143
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
141
144
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
142
145
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
143
146
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
147
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
144
148
|
"yarn install --immutable",
|
|
145
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
149
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
146
150
|
"yarn lint",
|
|
147
151
|
],
|
|
148
152
|
"stage": "test",
|
|
@@ -207,13 +211,13 @@ cloudsql:
|
|
|
207
211
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
208
212
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
209
213
|
"cd api",
|
|
210
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
211
214
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
212
215
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
213
216
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
214
217
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
218
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
215
219
|
"yarn install --immutable",
|
|
216
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
220
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
217
221
|
"yarn build",
|
|
218
222
|
],
|
|
219
223
|
"stage": "build",
|
|
@@ -611,14 +615,18 @@ cloudsql:
|
|
|
611
615
|
],
|
|
612
616
|
},
|
|
613
617
|
"script": [
|
|
618
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
619
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
620
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
621
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
614
622
|
"cd api",
|
|
615
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
616
623
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
617
624
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
618
625
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
619
626
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
627
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
620
628
|
"yarn install --immutable",
|
|
621
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
629
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
622
630
|
"yarn test",
|
|
623
631
|
],
|
|
624
632
|
"stage": "test",
|
|
@@ -856,14 +864,18 @@ cloudsql:
|
|
|
856
864
|
],
|
|
857
865
|
},
|
|
858
866
|
"script": [
|
|
867
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
868
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
869
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
870
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
859
871
|
"cd api",
|
|
860
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
861
872
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
862
873
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
863
874
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
864
875
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
876
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
865
877
|
"yarn install --immutable",
|
|
866
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
878
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
867
879
|
"yarn lint",
|
|
868
880
|
],
|
|
869
881
|
"stage": "test",
|
|
@@ -928,13 +940,13 @@ cloudsql:
|
|
|
928
940
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
929
941
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
930
942
|
"cd api",
|
|
931
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
932
943
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
933
944
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
934
945
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
935
946
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
947
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
936
948
|
"yarn install --immutable",
|
|
937
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
949
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
938
950
|
"yarn build",
|
|
939
951
|
],
|
|
940
952
|
"stage": "build",
|
|
@@ -1332,14 +1344,18 @@ cloudsql:
|
|
|
1332
1344
|
],
|
|
1333
1345
|
},
|
|
1334
1346
|
"script": [
|
|
1347
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1348
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1349
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1350
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1335
1351
|
"cd api",
|
|
1336
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1337
1352
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1338
1353
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1339
1354
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1340
1355
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1356
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1341
1357
|
"yarn install --immutable",
|
|
1342
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1358
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1343
1359
|
"yarn test",
|
|
1344
1360
|
],
|
|
1345
1361
|
"stage": "test",
|
|
@@ -1704,13 +1720,13 @@ cloudsql:
|
|
|
1704
1720
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1705
1721
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1706
1722
|
"cd api",
|
|
1707
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1708
1723
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1709
1724
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1710
1725
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1711
1726
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1727
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1712
1728
|
"yarn install --immutable",
|
|
1713
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1729
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1714
1730
|
"yarn build",
|
|
1715
1731
|
],
|
|
1716
1732
|
"stage": "build",
|
|
@@ -1791,13 +1807,13 @@ cloudsql:
|
|
|
1791
1807
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1792
1808
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1793
1809
|
"cd api",
|
|
1794
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1795
1810
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1796
1811
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1797
1812
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1798
1813
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1814
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1799
1815
|
"yarn install --immutable",
|
|
1800
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1816
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1801
1817
|
"yarn build",
|
|
1802
1818
|
],
|
|
1803
1819
|
"stage": "build",
|
|
@@ -131,14 +131,18 @@ cronjobs:
|
|
|
131
131
|
],
|
|
132
132
|
},
|
|
133
133
|
"script": [
|
|
134
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
135
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
136
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
137
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
134
138
|
"cd api",
|
|
135
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
136
139
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
137
140
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
138
141
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
139
142
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
143
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
140
144
|
"yarn install --immutable",
|
|
141
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
145
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
142
146
|
"yarn lint",
|
|
143
147
|
],
|
|
144
148
|
"stage": "test",
|
|
@@ -203,13 +207,13 @@ cronjobs:
|
|
|
203
207
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
204
208
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
205
209
|
"cd api",
|
|
206
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
207
210
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
208
211
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
209
212
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
210
213
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
214
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
211
215
|
"yarn install --immutable",
|
|
212
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
216
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
213
217
|
"yarn build",
|
|
214
218
|
],
|
|
215
219
|
"stage": "build",
|
|
@@ -597,14 +601,18 @@ cronjobs:
|
|
|
597
601
|
],
|
|
598
602
|
},
|
|
599
603
|
"script": [
|
|
604
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
605
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
606
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
607
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
600
608
|
"cd api",
|
|
601
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
602
609
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
603
610
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
604
611
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
605
612
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
613
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
606
614
|
"yarn install --immutable",
|
|
607
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
615
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
608
616
|
"yarn test",
|
|
609
617
|
],
|
|
610
618
|
"stage": "test",
|
|
@@ -758,14 +766,18 @@ application:
|
|
|
758
766
|
],
|
|
759
767
|
},
|
|
760
768
|
"script": [
|
|
769
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
770
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
771
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
772
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
761
773
|
"cd www",
|
|
762
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
763
774
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
764
775
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
765
776
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
766
777
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
778
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
767
779
|
"yarn install --immutable",
|
|
768
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
780
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
769
781
|
"yarn lint",
|
|
770
782
|
],
|
|
771
783
|
"stage": "test",
|
|
@@ -830,13 +842,13 @@ application:
|
|
|
830
842
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
831
843
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
832
844
|
"cd www",
|
|
833
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
834
845
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
835
846
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
836
847
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
837
848
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
849
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
838
850
|
"yarn install --immutable",
|
|
839
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
851
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
840
852
|
"yarn build",
|
|
841
853
|
],
|
|
842
854
|
"stage": "build",
|
|
@@ -1210,14 +1222,18 @@ application:
|
|
|
1210
1222
|
],
|
|
1211
1223
|
},
|
|
1212
1224
|
"script": [
|
|
1225
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1226
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1227
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1228
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1213
1229
|
"cd www",
|
|
1214
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1215
1230
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1216
1231
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1217
1232
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1218
1233
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1234
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1219
1235
|
"yarn install --immutable",
|
|
1220
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1236
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1221
1237
|
"yarn test",
|
|
1222
1238
|
],
|
|
1223
1239
|
"stage": "test",
|
|
@@ -1448,14 +1464,18 @@ cronjobs: {}
|
|
|
1448
1464
|
],
|
|
1449
1465
|
},
|
|
1450
1466
|
"script": [
|
|
1467
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1468
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1469
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1470
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1451
1471
|
"cd api",
|
|
1452
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1453
1472
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1454
1473
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1455
1474
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1456
1475
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1476
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1457
1477
|
"yarn install --immutable",
|
|
1458
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1478
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1459
1479
|
"yarn lint",
|
|
1460
1480
|
],
|
|
1461
1481
|
"stage": "test",
|
|
@@ -1520,13 +1540,13 @@ cronjobs: {}
|
|
|
1520
1540
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1521
1541
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1522
1542
|
"cd api",
|
|
1523
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1524
1543
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1525
1544
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1526
1545
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1527
1546
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1547
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1528
1548
|
"yarn install --immutable",
|
|
1529
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1549
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1530
1550
|
"yarn build",
|
|
1531
1551
|
],
|
|
1532
1552
|
"stage": "build",
|
|
@@ -1908,14 +1928,18 @@ cronjobs: {}
|
|
|
1908
1928
|
],
|
|
1909
1929
|
},
|
|
1910
1930
|
"script": [
|
|
1931
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1932
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1933
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1934
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1911
1935
|
"cd api",
|
|
1912
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1913
1936
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1914
1937
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1915
1938
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1916
1939
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1940
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
1917
1941
|
"yarn install --immutable",
|
|
1918
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
1942
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
1919
1943
|
"yarn test",
|
|
1920
1944
|
],
|
|
1921
1945
|
"stage": "test",
|
|
@@ -2069,14 +2093,18 @@ application:
|
|
|
2069
2093
|
],
|
|
2070
2094
|
},
|
|
2071
2095
|
"script": [
|
|
2096
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2097
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2098
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2099
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2072
2100
|
"cd www",
|
|
2073
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2074
2101
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2075
2102
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2076
2103
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2077
2104
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2105
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
2078
2106
|
"yarn install --immutable",
|
|
2079
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
2107
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
2080
2108
|
"yarn lint",
|
|
2081
2109
|
],
|
|
2082
2110
|
"stage": "test",
|
|
@@ -2141,13 +2169,13 @@ application:
|
|
|
2141
2169
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2142
2170
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2143
2171
|
"cd www",
|
|
2144
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2145
2172
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2146
2173
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2147
2174
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2148
2175
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2176
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
2149
2177
|
"yarn install --immutable",
|
|
2150
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
2178
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
2151
2179
|
"yarn build",
|
|
2152
2180
|
],
|
|
2153
2181
|
"stage": "build",
|
|
@@ -2521,14 +2549,18 @@ application:
|
|
|
2521
2549
|
],
|
|
2522
2550
|
},
|
|
2523
2551
|
"script": [
|
|
2552
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2553
|
+
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2554
|
+
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2555
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2524
2556
|
"cd www",
|
|
2525
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2526
2557
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2527
2558
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2528
2559
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2529
2560
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2561
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
2530
2562
|
"yarn install --immutable",
|
|
2531
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
2563
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
2532
2564
|
"yarn test",
|
|
2533
2565
|
],
|
|
2534
2566
|
"stage": "test",
|
|
@@ -2885,13 +2917,13 @@ cronjobs:
|
|
|
2885
2917
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2886
2918
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2887
2919
|
"cd api",
|
|
2888
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2889
2920
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2890
2921
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2891
2922
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2892
2923
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2924
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
2893
2925
|
"yarn install --immutable",
|
|
2894
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
2926
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
2895
2927
|
"yarn build",
|
|
2896
2928
|
],
|
|
2897
2929
|
"stage": "build",
|
|
@@ -2970,13 +3002,13 @@ cronjobs:
|
|
|
2970
3002
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2971
3003
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2972
3004
|
"cd api",
|
|
2973
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2974
3005
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2975
3006
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2976
3007
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2977
3008
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
3009
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
2978
3010
|
"yarn install --immutable",
|
|
2979
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
3011
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
2980
3012
|
"yarn build",
|
|
2981
3013
|
],
|
|
2982
3014
|
"stage": "build",
|
|
@@ -3877,13 +3909,13 @@ application:
|
|
|
3877
3909
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
3878
3910
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
3879
3911
|
"cd www",
|
|
3880
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
3881
3912
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
3882
3913
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
3883
3914
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
3884
3915
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
3916
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
3885
3917
|
"yarn install --immutable",
|
|
3886
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
3918
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
3887
3919
|
"yarn build",
|
|
3888
3920
|
],
|
|
3889
3921
|
"stage": "build",
|
|
@@ -3962,13 +3994,13 @@ application:
|
|
|
3962
3994
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
3963
3995
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
3964
3996
|
"cd www",
|
|
3965
|
-
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
3966
3997
|
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
3967
3998
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
3968
3999
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
3969
4000
|
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
4001
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
|
|
3970
4002
|
"yarn install --immutable",
|
|
3971
|
-
"echo -e "\\e[0Ksection_end:$(date +%s):yarn
|
|
4003
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
|
|
3972
4004
|
"yarn build",
|
|
3973
4005
|
],
|
|
3974
4006
|
"stage": "build",
|