@catladder/pipeline 1.120.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.
Files changed (25) hide show
  1. package/dist/build/node/yarn.js +3 -2
  2. package/dist/bundles/catladder-gitlab/index.js +1 -1
  3. package/dist/constants.js +1 -1
  4. package/dist/tsconfig.tsbuildinfo +1 -1
  5. package/examples/__snapshots__/cloud-run-memory-limit.ts.snap +40 -0
  6. package/examples/__snapshots__/cloud-run-no-cpu-throttling.ts.snap +40 -0
  7. package/examples/__snapshots__/cloud-run-non-public.ts.snap +40 -0
  8. package/examples/__snapshots__/cloud-run-with-sql-reuse-db.ts.snap +80 -0
  9. package/examples/__snapshots__/cloud-run-with-sql.ts.snap +80 -0
  10. package/examples/__snapshots__/custom-build-job-with-tests.ts.snap +8 -0
  11. package/examples/__snapshots__/custom-build-job.ts.snap +8 -0
  12. package/examples/__snapshots__/custom-deploy.ts.snap +40 -0
  13. package/examples/__snapshots__/custom-envs.ts.snap +52 -0
  14. package/examples/__snapshots__/custom-sbom-java.ts.snap +8 -0
  15. package/examples/__snapshots__/kubernetes-application-customization.ts.snap +40 -0
  16. package/examples/__snapshots__/kubernetes-with-cloud-sql-legacy.ts.snap +40 -0
  17. package/examples/__snapshots__/kubernetes-with-cloud-sql.ts.snap +40 -0
  18. package/examples/__snapshots__/kubernetes-with-jobs.ts.snap +80 -0
  19. package/examples/__snapshots__/kubernetes-with-mongodb.ts.snap +40 -0
  20. package/examples/__snapshots__/meteor-kubernetes.ts.snap +40 -0
  21. package/examples/__snapshots__/native-app.ts.snap +80 -0
  22. package/examples/__snapshots__/node-build-with-custom-image.ts.snap +40 -0
  23. package/examples/__snapshots__/wait-for-other-deploy.ts.snap +80 -0
  24. package/package.json +1 -1
  25. package/src/build/node/yarn.ts +14 -6
@@ -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",
@@ -148,9 +148,13 @@ mongodb:
148
148
  },
149
149
  "script": [
150
150
  "cd api",
151
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
152
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
151
153
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
152
154
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
155
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
153
156
  "yarn install --immutable",
157
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
154
158
  "yarn lint",
155
159
  ],
156
160
  "stage": "test",
@@ -210,12 +214,18 @@ mongodb:
210
214
  },
211
215
  "script": [
212
216
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
217
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
213
218
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
214
219
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
220
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
215
221
  "cd api",
222
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
223
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
216
224
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
217
225
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
226
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
218
227
  "yarn install --immutable",
228
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
219
229
  "yarn build",
220
230
  ],
221
231
  "stage": "build",
@@ -633,9 +643,13 @@ mongodb:
633
643
  },
634
644
  "script": [
635
645
  "cd api",
646
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
647
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
636
648
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
637
649
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
650
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
638
651
  "yarn install --immutable",
652
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
639
653
  "yarn test",
640
654
  ],
641
655
  "stage": "test",
@@ -885,9 +899,13 @@ mongodb:
885
899
  },
886
900
  "script": [
887
901
  "cd api",
902
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
903
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
888
904
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
889
905
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
906
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
890
907
  "yarn install --immutable",
908
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
891
909
  "yarn lint",
892
910
  ],
893
911
  "stage": "test",
@@ -947,12 +965,18 @@ mongodb:
947
965
  },
948
966
  "script": [
949
967
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
968
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
950
969
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
951
970
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
971
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
952
972
  "cd api",
973
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
974
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
953
975
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
954
976
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
977
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
955
978
  "yarn install --immutable",
979
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
956
980
  "yarn build",
957
981
  ],
958
982
  "stage": "build",
@@ -1370,9 +1394,13 @@ mongodb:
1370
1394
  },
1371
1395
  "script": [
1372
1396
  "cd api",
1397
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
1398
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1373
1399
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1374
1400
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1401
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1375
1402
  "yarn install --immutable",
1403
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
1376
1404
  "yarn test",
1377
1405
  ],
1378
1406
  "stage": "test",
@@ -1755,12 +1783,18 @@ mongodb:
1755
1783
  },
1756
1784
  "script": [
1757
1785
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
1786
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1758
1787
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1759
1788
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1789
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1760
1790
  "cd api",
1791
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
1792
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1761
1793
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1762
1794
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1795
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1763
1796
  "yarn install --immutable",
1797
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
1764
1798
  "yarn build",
1765
1799
  ],
1766
1800
  "stage": "build",
@@ -1834,12 +1868,18 @@ mongodb:
1834
1868
  },
1835
1869
  "script": [
1836
1870
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
1871
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1837
1872
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1838
1873
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1874
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1839
1875
  "cd api",
1876
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
1877
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1840
1878
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1841
1879
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1880
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1842
1881
  "yarn install --immutable",
1882
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
1843
1883
  "yarn build",
1844
1884
  ],
1845
1885
  "stage": "build",
@@ -142,9 +142,13 @@ mongodb:
142
142
  },
143
143
  "script": [
144
144
  "cd app",
145
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
146
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
145
147
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
146
148
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
149
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
147
150
  "yarn install --immutable",
151
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
148
152
  "yarn lint",
149
153
  ],
150
154
  "stage": "test",
@@ -204,12 +208,18 @@ mongodb:
204
208
  },
205
209
  "script": [
206
210
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > app/__build_info.json",
211
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
207
212
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
208
213
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
214
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
209
215
  "cd app",
216
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
217
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
210
218
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
211
219
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
220
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
212
221
  "yarn install --immutable",
222
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
213
223
  "echo "add healthcheck package"",
214
224
  "meteor add panter:healthroute --allow-superuser",
215
225
  "meteor add qualia:prod-shell --allow-superuser",
@@ -604,9 +614,13 @@ mongodb:
604
614
  },
605
615
  "script": [
606
616
  "cd app",
617
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
618
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
607
619
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
608
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"",
609
622
  "yarn install --immutable",
623
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
610
624
  "yarn test",
611
625
  ],
612
626
  "stage": "test",
@@ -850,9 +864,13 @@ mongodb:
850
864
  },
851
865
  "script": [
852
866
  "cd app",
867
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
868
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
853
869
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
854
870
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
871
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
855
872
  "yarn install --immutable",
873
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
856
874
  "yarn lint",
857
875
  ],
858
876
  "stage": "test",
@@ -912,12 +930,18 @@ mongodb:
912
930
  },
913
931
  "script": [
914
932
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > app/__build_info.json",
933
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
915
934
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
916
935
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
936
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
917
937
  "cd app",
938
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
939
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
918
940
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
919
941
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
942
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
920
943
  "yarn install --immutable",
944
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
921
945
  "echo "add healthcheck package"",
922
946
  "meteor add panter:healthroute --allow-superuser",
923
947
  "meteor add qualia:prod-shell --allow-superuser",
@@ -1312,9 +1336,13 @@ mongodb:
1312
1336
  },
1313
1337
  "script": [
1314
1338
  "cd app",
1339
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
1340
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1315
1341
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1316
1342
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1343
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1317
1344
  "yarn install --immutable",
1345
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
1318
1346
  "yarn test",
1319
1347
  ],
1320
1348
  "stage": "test",
@@ -1697,12 +1725,18 @@ mongodb:
1697
1725
  },
1698
1726
  "script": [
1699
1727
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > app/__build_info.json",
1728
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1700
1729
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1701
1730
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1731
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1702
1732
  "cd app",
1733
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
1734
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1703
1735
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1704
1736
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1737
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1705
1738
  "yarn install --immutable",
1739
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
1706
1740
  "echo "add healthcheck package"",
1707
1741
  "meteor add panter:healthroute --allow-superuser",
1708
1742
  "meteor add qualia:prod-shell --allow-superuser",
@@ -1781,12 +1815,18 @@ mongodb:
1781
1815
  },
1782
1816
  "script": [
1783
1817
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > app/__build_info.json",
1818
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1784
1819
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1785
1820
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1821
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1786
1822
  "cd app",
1823
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarn prepare[collapsed=true]\\r\\e[0KNode and yarn install"",
1824
+ "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1787
1825
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1788
1826
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1827
+ "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1789
1828
  "yarn install --immutable",
1829
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarn prepare\\r\\e[0K"",
1790
1830
  "echo "add healthcheck package"",
1791
1831
  "meteor add panter:healthroute --allow-superuser",
1792
1832
  "meteor add qualia:prod-shell --allow-superuser",