@catladder/pipeline 1.119.0 → 1.121.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/yarn.js +3 -2
- package/dist/bundles/catladder-gitlab/index.js +1 -1
- package/dist/constants.js +1 -1
- package/dist/deploy/cloudRun/deployJob.js +2 -1
- package/dist/deploy/types/googleCloudRun.d.ts +12 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/cloud-run-memory-limit.ts.snap +44 -4
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.ts.snap +44 -4
- package/examples/__snapshots__/cloud-run-non-public.ts.snap +44 -4
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.ts.snap +88 -8
- package/examples/__snapshots__/cloud-run-with-sql.ts.snap +88 -8
- package/examples/__snapshots__/custom-build-job-with-tests.ts.snap +12 -4
- package/examples/__snapshots__/custom-build-job.ts.snap +12 -4
- package/examples/__snapshots__/custom-deploy.ts.snap +40 -0
- package/examples/__snapshots__/custom-envs.ts.snap +52 -0
- package/examples/__snapshots__/custom-sbom-java.ts.snap +12 -4
- package/examples/__snapshots__/kubernetes-application-customization.ts.snap +40 -0
- package/examples/__snapshots__/kubernetes-with-cloud-sql-legacy.ts.snap +40 -0
- package/examples/__snapshots__/kubernetes-with-cloud-sql.ts.snap +40 -0
- package/examples/__snapshots__/kubernetes-with-jobs.ts.snap +80 -0
- package/examples/__snapshots__/kubernetes-with-mongodb.ts.snap +40 -0
- package/examples/__snapshots__/meteor-kubernetes.ts.snap +40 -0
- package/examples/__snapshots__/native-app.ts.snap +84 -4
- package/examples/__snapshots__/node-build-with-custom-image.ts.snap +44 -4
- package/examples/__snapshots__/wait-for-other-deploy.ts.snap +80 -0
- package/package.json +1 -1
- package/src/build/node/yarn.ts +14 -6
- package/src/deploy/cloudRun/deployJob.ts +1 -0
- package/src/deploy/types/googleCloudRun.ts +13 -1
|
@@ -131,9 +131,13 @@ cloudsql:
|
|
|
131
131
|
},
|
|
132
132
|
"script": [
|
|
133
133
|
"cd api",
|
|
134
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
135
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
134
136
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
135
137
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
138
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
136
139
|
"yarn install --immutable",
|
|
140
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
137
141
|
"yarn lint",
|
|
138
142
|
],
|
|
139
143
|
"stage": "test",
|
|
@@ -193,12 +197,18 @@ cloudsql:
|
|
|
193
197
|
},
|
|
194
198
|
"script": [
|
|
195
199
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
200
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
196
201
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
197
202
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
203
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
198
204
|
"cd api",
|
|
205
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
206
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
199
207
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
200
208
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
209
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
201
210
|
"yarn install --immutable",
|
|
211
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
202
212
|
"yarn build",
|
|
203
213
|
],
|
|
204
214
|
"stage": "build",
|
|
@@ -582,9 +592,13 @@ cloudsql:
|
|
|
582
592
|
},
|
|
583
593
|
"script": [
|
|
584
594
|
"cd api",
|
|
595
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
596
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
585
597
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
586
598
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
599
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
587
600
|
"yarn install --immutable",
|
|
601
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
588
602
|
"yarn test",
|
|
589
603
|
],
|
|
590
604
|
"stage": "test",
|
|
@@ -817,9 +831,13 @@ cloudsql:
|
|
|
817
831
|
},
|
|
818
832
|
"script": [
|
|
819
833
|
"cd api",
|
|
834
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
835
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
820
836
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
821
837
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
838
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
822
839
|
"yarn install --immutable",
|
|
840
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
823
841
|
"yarn lint",
|
|
824
842
|
],
|
|
825
843
|
"stage": "test",
|
|
@@ -879,12 +897,18 @@ cloudsql:
|
|
|
879
897
|
},
|
|
880
898
|
"script": [
|
|
881
899
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
900
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
882
901
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
883
902
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
903
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
884
904
|
"cd api",
|
|
905
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
906
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
885
907
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
886
908
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
909
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
887
910
|
"yarn install --immutable",
|
|
911
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
888
912
|
"yarn build",
|
|
889
913
|
],
|
|
890
914
|
"stage": "build",
|
|
@@ -1268,9 +1292,13 @@ cloudsql:
|
|
|
1268
1292
|
},
|
|
1269
1293
|
"script": [
|
|
1270
1294
|
"cd api",
|
|
1295
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1296
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1271
1297
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1272
1298
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1299
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1273
1300
|
"yarn install --immutable",
|
|
1301
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1274
1302
|
"yarn test",
|
|
1275
1303
|
],
|
|
1276
1304
|
"stage": "test",
|
|
@@ -1619,12 +1647,18 @@ cloudsql:
|
|
|
1619
1647
|
},
|
|
1620
1648
|
"script": [
|
|
1621
1649
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
1650
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1622
1651
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1623
1652
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1653
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1624
1654
|
"cd api",
|
|
1655
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1656
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1625
1657
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1626
1658
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1659
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1627
1660
|
"yarn install --immutable",
|
|
1661
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1628
1662
|
"yarn build",
|
|
1629
1663
|
],
|
|
1630
1664
|
"stage": "build",
|
|
@@ -1698,12 +1732,18 @@ cloudsql:
|
|
|
1698
1732
|
},
|
|
1699
1733
|
"script": [
|
|
1700
1734
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
1735
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1701
1736
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1702
1737
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1738
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1703
1739
|
"cd api",
|
|
1740
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1741
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1704
1742
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1705
1743
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1744
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1706
1745
|
"yarn install --immutable",
|
|
1746
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1707
1747
|
"yarn build",
|
|
1708
1748
|
],
|
|
1709
1749
|
"stage": "build",
|
|
@@ -132,9 +132,13 @@ cloudsql:
|
|
|
132
132
|
},
|
|
133
133
|
"script": [
|
|
134
134
|
"cd api",
|
|
135
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
136
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
135
137
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
136
138
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
139
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
137
140
|
"yarn install --immutable",
|
|
141
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
138
142
|
"yarn lint",
|
|
139
143
|
],
|
|
140
144
|
"stage": "test",
|
|
@@ -194,12 +198,18 @@ cloudsql:
|
|
|
194
198
|
},
|
|
195
199
|
"script": [
|
|
196
200
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
201
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
197
202
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
198
203
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
204
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
199
205
|
"cd api",
|
|
206
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
207
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
200
208
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
201
209
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
210
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
202
211
|
"yarn install --immutable",
|
|
212
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
203
213
|
"yarn build",
|
|
204
214
|
],
|
|
205
215
|
"stage": "build",
|
|
@@ -585,9 +595,13 @@ cloudsql:
|
|
|
585
595
|
},
|
|
586
596
|
"script": [
|
|
587
597
|
"cd api",
|
|
598
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
599
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
588
600
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
589
601
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
602
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
590
603
|
"yarn install --immutable",
|
|
604
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
591
605
|
"yarn test",
|
|
592
606
|
],
|
|
593
607
|
"stage": "test",
|
|
@@ -821,9 +835,13 @@ cloudsql:
|
|
|
821
835
|
},
|
|
822
836
|
"script": [
|
|
823
837
|
"cd api",
|
|
838
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
839
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
824
840
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
825
841
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
842
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
826
843
|
"yarn install --immutable",
|
|
844
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
827
845
|
"yarn lint",
|
|
828
846
|
],
|
|
829
847
|
"stage": "test",
|
|
@@ -883,12 +901,18 @@ cloudsql:
|
|
|
883
901
|
},
|
|
884
902
|
"script": [
|
|
885
903
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
904
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
886
905
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
887
906
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
907
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
888
908
|
"cd api",
|
|
909
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
910
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
889
911
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
890
912
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
913
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
891
914
|
"yarn install --immutable",
|
|
915
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
892
916
|
"yarn build",
|
|
893
917
|
],
|
|
894
918
|
"stage": "build",
|
|
@@ -1274,9 +1298,13 @@ cloudsql:
|
|
|
1274
1298
|
},
|
|
1275
1299
|
"script": [
|
|
1276
1300
|
"cd api",
|
|
1301
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1302
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1277
1303
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1278
1304
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1305
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1279
1306
|
"yarn install --immutable",
|
|
1307
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1280
1308
|
"yarn test",
|
|
1281
1309
|
],
|
|
1282
1310
|
"stage": "test",
|
|
@@ -1627,12 +1655,18 @@ cloudsql:
|
|
|
1627
1655
|
},
|
|
1628
1656
|
"script": [
|
|
1629
1657
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
1658
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1630
1659
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1631
1660
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1661
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1632
1662
|
"cd api",
|
|
1663
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1664
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1633
1665
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1634
1666
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1667
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1635
1668
|
"yarn install --immutable",
|
|
1669
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1636
1670
|
"yarn build",
|
|
1637
1671
|
],
|
|
1638
1672
|
"stage": "build",
|
|
@@ -1706,12 +1740,18 @@ cloudsql:
|
|
|
1706
1740
|
},
|
|
1707
1741
|
"script": [
|
|
1708
1742
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
1743
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1709
1744
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1710
1745
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1746
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1711
1747
|
"cd api",
|
|
1748
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1749
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1712
1750
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1713
1751
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1752
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1714
1753
|
"yarn install --immutable",
|
|
1754
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1715
1755
|
"yarn build",
|
|
1716
1756
|
],
|
|
1717
1757
|
"stage": "build",
|
|
@@ -128,9 +128,13 @@ cronjobs:
|
|
|
128
128
|
},
|
|
129
129
|
"script": [
|
|
130
130
|
"cd api",
|
|
131
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
132
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
131
133
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
132
134
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
135
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
133
136
|
"yarn install --immutable",
|
|
137
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
134
138
|
"yarn lint",
|
|
135
139
|
],
|
|
136
140
|
"stage": "test",
|
|
@@ -190,12 +194,18 @@ cronjobs:
|
|
|
190
194
|
},
|
|
191
195
|
"script": [
|
|
192
196
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
197
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
193
198
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
194
199
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
200
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
195
201
|
"cd api",
|
|
202
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
203
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
196
204
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
197
205
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
206
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
198
207
|
"yarn install --immutable",
|
|
208
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
199
209
|
"yarn build",
|
|
200
210
|
],
|
|
201
211
|
"stage": "build",
|
|
@@ -571,9 +581,13 @@ cronjobs:
|
|
|
571
581
|
},
|
|
572
582
|
"script": [
|
|
573
583
|
"cd api",
|
|
584
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
585
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
574
586
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
575
587
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
588
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
576
589
|
"yarn install --immutable",
|
|
590
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
577
591
|
"yarn test",
|
|
578
592
|
],
|
|
579
593
|
"stage": "test",
|
|
@@ -724,9 +738,13 @@ application:
|
|
|
724
738
|
},
|
|
725
739
|
"script": [
|
|
726
740
|
"cd www",
|
|
741
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
742
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
727
743
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
728
744
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
745
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
729
746
|
"yarn install --immutable",
|
|
747
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
730
748
|
"yarn lint",
|
|
731
749
|
],
|
|
732
750
|
"stage": "test",
|
|
@@ -786,12 +804,18 @@ application:
|
|
|
786
804
|
},
|
|
787
805
|
"script": [
|
|
788
806
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
|
|
807
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
789
808
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
790
809
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
810
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
791
811
|
"cd www",
|
|
812
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
813
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
792
814
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
793
815
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
816
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
794
817
|
"yarn install --immutable",
|
|
818
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
795
819
|
"yarn build",
|
|
796
820
|
],
|
|
797
821
|
"stage": "build",
|
|
@@ -1153,9 +1177,13 @@ application:
|
|
|
1153
1177
|
},
|
|
1154
1178
|
"script": [
|
|
1155
1179
|
"cd www",
|
|
1180
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1181
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1156
1182
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1157
1183
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1184
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1158
1185
|
"yarn install --immutable",
|
|
1186
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1159
1187
|
"yarn test",
|
|
1160
1188
|
],
|
|
1161
1189
|
"stage": "test",
|
|
@@ -1382,9 +1410,13 @@ cronjobs: {}
|
|
|
1382
1410
|
},
|
|
1383
1411
|
"script": [
|
|
1384
1412
|
"cd api",
|
|
1413
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1414
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1385
1415
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1386
1416
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1417
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1387
1418
|
"yarn install --immutable",
|
|
1419
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1388
1420
|
"yarn lint",
|
|
1389
1421
|
],
|
|
1390
1422
|
"stage": "test",
|
|
@@ -1444,12 +1476,18 @@ cronjobs: {}
|
|
|
1444
1476
|
},
|
|
1445
1477
|
"script": [
|
|
1446
1478
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
1479
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1447
1480
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1448
1481
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1482
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1449
1483
|
"cd api",
|
|
1484
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1485
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1450
1486
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1451
1487
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1488
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1452
1489
|
"yarn install --immutable",
|
|
1490
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1453
1491
|
"yarn build",
|
|
1454
1492
|
],
|
|
1455
1493
|
"stage": "build",
|
|
@@ -1819,9 +1857,13 @@ cronjobs: {}
|
|
|
1819
1857
|
},
|
|
1820
1858
|
"script": [
|
|
1821
1859
|
"cd api",
|
|
1860
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
1861
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1822
1862
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1823
1863
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
1864
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1824
1865
|
"yarn install --immutable",
|
|
1866
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1825
1867
|
"yarn test",
|
|
1826
1868
|
],
|
|
1827
1869
|
"stage": "test",
|
|
@@ -1972,9 +2014,13 @@ application:
|
|
|
1972
2014
|
},
|
|
1973
2015
|
"script": [
|
|
1974
2016
|
"cd www",
|
|
2017
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2018
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
1975
2019
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
1976
2020
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2021
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
1977
2022
|
"yarn install --immutable",
|
|
2023
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
1978
2024
|
"yarn lint",
|
|
1979
2025
|
],
|
|
1980
2026
|
"stage": "test",
|
|
@@ -2034,12 +2080,18 @@ application:
|
|
|
2034
2080
|
},
|
|
2035
2081
|
"script": [
|
|
2036
2082
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
|
|
2083
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2037
2084
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2038
2085
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2086
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2039
2087
|
"cd www",
|
|
2088
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2089
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2040
2090
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2041
2091
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2092
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2042
2093
|
"yarn install --immutable",
|
|
2094
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
2043
2095
|
"yarn build",
|
|
2044
2096
|
],
|
|
2045
2097
|
"stage": "build",
|
|
@@ -2401,9 +2453,13 @@ application:
|
|
|
2401
2453
|
},
|
|
2402
2454
|
"script": [
|
|
2403
2455
|
"cd www",
|
|
2456
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2457
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2404
2458
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2405
2459
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2460
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2406
2461
|
"yarn install --immutable",
|
|
2462
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
2407
2463
|
"yarn test",
|
|
2408
2464
|
],
|
|
2409
2465
|
"stage": "test",
|
|
@@ -2746,12 +2802,18 @@ cronjobs:
|
|
|
2746
2802
|
},
|
|
2747
2803
|
"script": [
|
|
2748
2804
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
2805
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2749
2806
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2750
2807
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2808
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2751
2809
|
"cd api",
|
|
2810
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2811
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2752
2812
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2753
2813
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2814
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2754
2815
|
"yarn install --immutable",
|
|
2816
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
2755
2817
|
"yarn build",
|
|
2756
2818
|
],
|
|
2757
2819
|
"stage": "build",
|
|
@@ -2823,12 +2885,18 @@ cronjobs:
|
|
|
2823
2885
|
},
|
|
2824
2886
|
"script": [
|
|
2825
2887
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
|
|
2888
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2826
2889
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2827
2890
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2891
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2828
2892
|
"cd api",
|
|
2893
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
2894
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
2829
2895
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
2830
2896
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
2897
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
2831
2898
|
"yarn install --immutable",
|
|
2899
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
2832
2900
|
"yarn build",
|
|
2833
2901
|
],
|
|
2834
2902
|
"stage": "build",
|
|
@@ -3692,12 +3760,18 @@ application:
|
|
|
3692
3760
|
},
|
|
3693
3761
|
"script": [
|
|
3694
3762
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
|
|
3763
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
3695
3764
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
3696
3765
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
3766
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
3697
3767
|
"cd www",
|
|
3768
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
3769
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
3698
3770
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
3699
3771
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
3772
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
3700
3773
|
"yarn install --immutable",
|
|
3774
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
3701
3775
|
"yarn build",
|
|
3702
3776
|
],
|
|
3703
3777
|
"stage": "build",
|
|
@@ -3769,12 +3843,18 @@ application:
|
|
|
3769
3843
|
},
|
|
3770
3844
|
"script": [
|
|
3771
3845
|
"echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
|
|
3846
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
3772
3847
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
3773
3848
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
3849
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
3774
3850
|
"cd www",
|
|
3851
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
|
|
3852
|
+
"echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
|
|
3775
3853
|
"if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
|
|
3776
3854
|
"if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
|
|
3855
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
|
|
3777
3856
|
"yarn install --immutable",
|
|
3857
|
+
"echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
|
|
3778
3858
|
"yarn build",
|
|
3779
3859
|
],
|
|
3780
3860
|
"stage": "build",
|