@catladder/pipeline 2.7.5 โ 2.7.6
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/constants.js +1 -1
- package/dist/pipeline/createMainPipeline.js +2 -2
- package/dist/rules/index.d.ts +3 -0
- package/dist/rules/index.js +7 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/cloud-run-http2.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +5 -15
- package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +16 -48
- package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +8 -24
- package/examples/__snapshots__/custom-build-job-with-tests.test.ts.snap +8 -24
- package/examples/__snapshots__/custom-build-job.test.ts.snap +5 -15
- package/examples/__snapshots__/custom-deploy.test.ts.snap +7 -21
- package/examples/__snapshots__/custom-envs.test.ts.snap +15 -45
- package/examples/__snapshots__/custom-sbom-java.test.ts.snap +5 -15
- package/examples/__snapshots__/custom-verify-job.test.ts.snap +9 -27
- package/examples/__snapshots__/git-submodule.test.ts.snap +8 -24
- package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +9 -27
- package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +9 -27
- package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +18 -54
- package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +9 -27
- package/examples/__snapshots__/local-dot-env.test.ts.snap +8 -24
- package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +9 -27
- package/examples/__snapshots__/multiline-var.test.ts.snap +25 -75
- package/examples/__snapshots__/native-app.test.ts.snap +14 -42
- package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +8 -24
- package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +8 -24
- package/examples/__snapshots__/rails-k8s-with-worker-dockerfile.test.ts.snap +8 -24
- package/examples/__snapshots__/rails-k8s-with-worker.test.ts.snap +8 -24
- package/examples/__snapshots__/referencing-other-vars.test.ts.snap +25 -75
- package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +12 -36
- package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +12 -36
- package/examples/__snapshots__/workspace-api-www.test.ts.snap +12 -36
- package/package.json +1 -1
- package/src/pipeline/createMainPipeline.ts +3 -4
- package/src/rules/index.ts +10 -1
|
@@ -89,9 +89,7 @@ api ๐ก audit:
|
|
|
89
89
|
- cd api
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ api ๐ฎ lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- api/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ api ๐งช test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- api/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -271,9 +265,7 @@ api ๐งช test:
|
|
|
271
265
|
when: always
|
|
272
266
|
reports: {}
|
|
273
267
|
rules:
|
|
274
|
-
-
|
|
275
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
276
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
268
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
277
269
|
needs: []
|
|
278
270
|
retry: *a1
|
|
279
271
|
interruptible: true
|
|
@@ -330,9 +322,7 @@ api ๐งช test:
|
|
|
330
322
|
paths:
|
|
331
323
|
- api/.yarn
|
|
332
324
|
rules:
|
|
333
|
-
-
|
|
334
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
335
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
325
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
336
326
|
needs:
|
|
337
327
|
- 'api ๐จ app | dev '
|
|
338
328
|
retry: *a1
|
|
@@ -349,9 +339,7 @@ api ๐งช test:
|
|
|
349
339
|
paths:
|
|
350
340
|
- __sbom.json
|
|
351
341
|
rules:
|
|
352
|
-
-
|
|
353
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
354
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
342
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
355
343
|
needs: []
|
|
356
344
|
retry: *a1
|
|
357
345
|
interruptible: true
|
|
@@ -467,10 +455,8 @@ api ๐งช test:
|
|
|
467
455
|
reports:
|
|
468
456
|
dotenv: gitlab_environment.env
|
|
469
457
|
rules:
|
|
470
|
-
- when: never
|
|
471
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
472
458
|
- when: on_success
|
|
473
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
459
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
474
460
|
needs:
|
|
475
461
|
- job: api ๐ฎ lint
|
|
476
462
|
artifacts: false
|
|
@@ -513,10 +499,8 @@ api ๐งช test:
|
|
|
513
499
|
rules:
|
|
514
500
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
515
501
|
when: on_success
|
|
516
|
-
- when: never
|
|
517
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
518
502
|
- when: manual
|
|
519
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
503
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
520
504
|
needs: []
|
|
521
505
|
retry: *a1
|
|
522
506
|
interruptible: true
|
|
@@ -1514,9 +1498,7 @@ worker ๐ก audit:
|
|
|
1514
1498
|
- cd api
|
|
1515
1499
|
- yarn npm audit --environment production
|
|
1516
1500
|
rules:
|
|
1517
|
-
-
|
|
1518
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1519
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1501
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1520
1502
|
- if: $CI_MERGE_REQUEST_ID
|
|
1521
1503
|
needs: []
|
|
1522
1504
|
retry: *a1
|
|
@@ -1556,9 +1538,7 @@ worker ๐ฎ lint:
|
|
|
1556
1538
|
paths:
|
|
1557
1539
|
- api/node_modules
|
|
1558
1540
|
rules:
|
|
1559
|
-
-
|
|
1560
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1561
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1541
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1562
1542
|
- if: $CI_MERGE_REQUEST_ID
|
|
1563
1543
|
needs: []
|
|
1564
1544
|
retry: *a1
|
|
@@ -1597,9 +1577,7 @@ worker ๐งช test:
|
|
|
1597
1577
|
paths:
|
|
1598
1578
|
- api/node_modules
|
|
1599
1579
|
rules:
|
|
1600
|
-
-
|
|
1601
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1602
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1580
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1603
1581
|
- if: $CI_MERGE_REQUEST_ID
|
|
1604
1582
|
needs: []
|
|
1605
1583
|
retry: *a1
|
|
@@ -1692,9 +1670,7 @@ worker ๐งช test:
|
|
|
1692
1670
|
when: always
|
|
1693
1671
|
reports: {}
|
|
1694
1672
|
rules:
|
|
1695
|
-
-
|
|
1696
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1697
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1673
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1698
1674
|
needs: []
|
|
1699
1675
|
retry: *a1
|
|
1700
1676
|
interruptible: true
|
|
@@ -1751,9 +1727,7 @@ worker ๐งช test:
|
|
|
1751
1727
|
paths:
|
|
1752
1728
|
- api/.yarn
|
|
1753
1729
|
rules:
|
|
1754
|
-
-
|
|
1755
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1756
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1730
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1757
1731
|
needs:
|
|
1758
1732
|
- 'worker ๐จ app | dev '
|
|
1759
1733
|
retry: *a1
|
|
@@ -1770,9 +1744,7 @@ worker ๐งช test:
|
|
|
1770
1744
|
paths:
|
|
1771
1745
|
- __sbom.json
|
|
1772
1746
|
rules:
|
|
1773
|
-
-
|
|
1774
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1775
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1747
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1776
1748
|
needs: []
|
|
1777
1749
|
retry: *a1
|
|
1778
1750
|
interruptible: true
|
|
@@ -1888,10 +1860,8 @@ worker ๐งช test:
|
|
|
1888
1860
|
reports:
|
|
1889
1861
|
dotenv: gitlab_environment.env
|
|
1890
1862
|
rules:
|
|
1891
|
-
- when: never
|
|
1892
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1893
1863
|
- when: on_success
|
|
1894
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1864
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1895
1865
|
needs:
|
|
1896
1866
|
- job: worker ๐ฎ lint
|
|
1897
1867
|
artifacts: false
|
|
@@ -1934,10 +1904,8 @@ worker ๐งช test:
|
|
|
1934
1904
|
rules:
|
|
1935
1905
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
1936
1906
|
when: on_success
|
|
1937
|
-
- when: never
|
|
1938
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1939
1907
|
- when: manual
|
|
1940
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1908
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1941
1909
|
needs: []
|
|
1942
1910
|
retry: *a1
|
|
1943
1911
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ api ๐ก audit:
|
|
|
89
89
|
- cd api
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ api ๐ฎ lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- api/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ api ๐งช test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- api/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -275,9 +269,7 @@ api ๐งช test:
|
|
|
275
269
|
when: always
|
|
276
270
|
reports: {}
|
|
277
271
|
rules:
|
|
278
|
-
-
|
|
279
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
280
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
272
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
281
273
|
needs: []
|
|
282
274
|
retry: *a1
|
|
283
275
|
interruptible: true
|
|
@@ -334,9 +326,7 @@ api ๐งช test:
|
|
|
334
326
|
paths:
|
|
335
327
|
- api/.yarn
|
|
336
328
|
rules:
|
|
337
|
-
-
|
|
338
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
339
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
329
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
340
330
|
needs:
|
|
341
331
|
- 'api ๐จ app | dev '
|
|
342
332
|
retry: *a1
|
|
@@ -353,9 +343,7 @@ api ๐งช test:
|
|
|
353
343
|
paths:
|
|
354
344
|
- __sbom.json
|
|
355
345
|
rules:
|
|
356
|
-
-
|
|
357
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
358
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
346
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
359
347
|
needs: []
|
|
360
348
|
retry: *a1
|
|
361
349
|
interruptible: true
|
|
@@ -506,10 +494,8 @@ api ๐งช test:
|
|
|
506
494
|
reports:
|
|
507
495
|
dotenv: gitlab_environment.env
|
|
508
496
|
rules:
|
|
509
|
-
- when: never
|
|
510
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
511
497
|
- when: on_success
|
|
512
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
498
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
513
499
|
needs:
|
|
514
500
|
- job: api ๐ฎ lint
|
|
515
501
|
artifacts: false
|
|
@@ -557,10 +543,8 @@ api ๐งช test:
|
|
|
557
543
|
rules:
|
|
558
544
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
559
545
|
when: on_success
|
|
560
|
-
- when: never
|
|
561
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
562
546
|
- when: manual
|
|
563
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
547
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
564
548
|
needs: []
|
|
565
549
|
retry: *a1
|
|
566
550
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ api ๐ก audit:
|
|
|
89
89
|
- cd api
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ api ๐ฎ lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- api/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ api ๐งช test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- api/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -259,9 +253,7 @@ api ๐งช test:
|
|
|
259
253
|
when: always
|
|
260
254
|
reports: {}
|
|
261
255
|
rules:
|
|
262
|
-
-
|
|
263
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
264
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
256
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
265
257
|
needs: []
|
|
266
258
|
retry: *a1
|
|
267
259
|
interruptible: true
|
|
@@ -318,9 +310,7 @@ api ๐งช test:
|
|
|
318
310
|
paths:
|
|
319
311
|
- api/.yarn
|
|
320
312
|
rules:
|
|
321
|
-
-
|
|
322
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
323
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
313
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
324
314
|
needs:
|
|
325
315
|
- 'api ๐จ app | dev '
|
|
326
316
|
retry: *a1
|
|
@@ -337,9 +327,7 @@ api ๐งช test:
|
|
|
337
327
|
paths:
|
|
338
328
|
- __sbom.json
|
|
339
329
|
rules:
|
|
340
|
-
-
|
|
341
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
342
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
330
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
343
331
|
needs: []
|
|
344
332
|
retry: *a1
|
|
345
333
|
interruptible: true
|
|
@@ -434,10 +422,8 @@ api ๐งช test:
|
|
|
434
422
|
reports:
|
|
435
423
|
dotenv: gitlab_environment.env
|
|
436
424
|
rules:
|
|
437
|
-
- when: never
|
|
438
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
439
425
|
- when: on_success
|
|
440
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
426
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
441
427
|
needs:
|
|
442
428
|
- job: api ๐ฎ lint
|
|
443
429
|
artifacts: false
|
|
@@ -481,10 +467,8 @@ api ๐งช test:
|
|
|
481
467
|
rules:
|
|
482
468
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
483
469
|
when: on_success
|
|
484
|
-
- when: never
|
|
485
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
486
470
|
- when: manual
|
|
487
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
471
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
488
472
|
needs: []
|
|
489
473
|
retry: *a1
|
|
490
474
|
interruptible: true
|
|
@@ -97,9 +97,7 @@ www ๐ก audit:
|
|
|
97
97
|
junit:
|
|
98
98
|
- www/dist/audit.xml
|
|
99
99
|
rules:
|
|
100
|
-
-
|
|
101
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
102
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
100
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
103
101
|
- if: $CI_MERGE_REQUEST_ID
|
|
104
102
|
needs: []
|
|
105
103
|
retry: &a2
|
|
@@ -128,9 +126,7 @@ www ๐ฎ lint:
|
|
|
128
126
|
junit:
|
|
129
127
|
- www/dist/lint.xml
|
|
130
128
|
rules:
|
|
131
|
-
-
|
|
132
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
133
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
129
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
134
130
|
- if: $CI_MERGE_REQUEST_ID
|
|
135
131
|
needs: []
|
|
136
132
|
retry: *a2
|
|
@@ -155,9 +151,7 @@ www ๐งช test:
|
|
|
155
151
|
- www/dist/TEST-*.xml
|
|
156
152
|
- www/dist/junit-*.xml
|
|
157
153
|
rules:
|
|
158
|
-
-
|
|
159
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
160
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
154
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
161
155
|
- if: $CI_MERGE_REQUEST_ID
|
|
162
156
|
needs: []
|
|
163
157
|
retry: *a2
|
|
@@ -224,9 +218,7 @@ www ๐งช test:
|
|
|
224
218
|
when: always
|
|
225
219
|
reports: {}
|
|
226
220
|
rules:
|
|
227
|
-
-
|
|
228
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
229
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
221
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
230
222
|
needs: []
|
|
231
223
|
retry: *a2
|
|
232
224
|
interruptible: true
|
|
@@ -269,9 +261,7 @@ www ๐งช test:
|
|
|
269
261
|
- docker push $DOCKER_CACHE_IMAGE
|
|
270
262
|
- collapseable_section_end "docker-push"
|
|
271
263
|
rules:
|
|
272
|
-
-
|
|
273
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
274
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
264
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
275
265
|
needs:
|
|
276
266
|
- 'www ๐จ app | dev '
|
|
277
267
|
retry: *a2
|
|
@@ -288,9 +278,7 @@ www ๐งช test:
|
|
|
288
278
|
paths:
|
|
289
279
|
- __sbom.json
|
|
290
280
|
rules:
|
|
291
|
-
-
|
|
292
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
293
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
281
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
294
282
|
needs: []
|
|
295
283
|
retry: *a2
|
|
296
284
|
interruptible: true
|
|
@@ -384,10 +372,8 @@ www ๐งช test:
|
|
|
384
372
|
reports:
|
|
385
373
|
dotenv: gitlab_environment.env
|
|
386
374
|
rules:
|
|
387
|
-
- when: never
|
|
388
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
389
375
|
- when: on_success
|
|
390
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
376
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
391
377
|
needs:
|
|
392
378
|
- job: www ๐ฎ lint
|
|
393
379
|
artifacts: false
|
|
@@ -430,10 +416,8 @@ www ๐งช test:
|
|
|
430
416
|
rules:
|
|
431
417
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
432
418
|
when: on_success
|
|
433
|
-
- when: never
|
|
434
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
435
419
|
- when: manual
|
|
436
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
420
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
437
421
|
needs: []
|
|
438
422
|
retry: *a2
|
|
439
423
|
interruptible: true
|
|
@@ -133,9 +133,7 @@ before_script:
|
|
|
133
133
|
when: always
|
|
134
134
|
reports: {}
|
|
135
135
|
rules:
|
|
136
|
-
-
|
|
137
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
138
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
139
137
|
needs: []
|
|
140
138
|
retry: &a1
|
|
141
139
|
max: 2
|
|
@@ -182,9 +180,7 @@ before_script:
|
|
|
182
180
|
- docker push $DOCKER_CACHE_IMAGE
|
|
183
181
|
- collapseable_section_end "docker-push"
|
|
184
182
|
rules:
|
|
185
|
-
-
|
|
186
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
187
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
183
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
188
184
|
needs:
|
|
189
185
|
- 'www ๐จ app | dev '
|
|
190
186
|
retry: *a1
|
|
@@ -201,9 +197,7 @@ before_script:
|
|
|
201
197
|
paths:
|
|
202
198
|
- __sbom.json
|
|
203
199
|
rules:
|
|
204
|
-
-
|
|
205
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
206
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
200
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
207
201
|
needs: []
|
|
208
202
|
retry: *a1
|
|
209
203
|
interruptible: true
|
|
@@ -297,10 +291,8 @@ before_script:
|
|
|
297
291
|
reports:
|
|
298
292
|
dotenv: gitlab_environment.env
|
|
299
293
|
rules:
|
|
300
|
-
- when: never
|
|
301
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
302
294
|
- when: on_success
|
|
303
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
295
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
304
296
|
needs:
|
|
305
297
|
- job: 'www ๐จ app | dev '
|
|
306
298
|
artifacts: false
|
|
@@ -337,10 +329,8 @@ before_script:
|
|
|
337
329
|
rules:
|
|
338
330
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
339
331
|
when: on_success
|
|
340
|
-
- when: never
|
|
341
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
342
332
|
- when: manual
|
|
343
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
333
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
344
334
|
needs: []
|
|
345
335
|
retry: *a1
|
|
346
336
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ www ๐ก audit:
|
|
|
89
89
|
- cd www
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ www ๐ฎ lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- www/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ www ๐งช test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- www/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -251,9 +245,7 @@ www ๐งช test:
|
|
|
251
245
|
when: always
|
|
252
246
|
reports: {}
|
|
253
247
|
rules:
|
|
254
|
-
-
|
|
255
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
256
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
248
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
257
249
|
needs: []
|
|
258
250
|
retry: *a1
|
|
259
251
|
interruptible: true
|
|
@@ -310,9 +302,7 @@ www ๐งช test:
|
|
|
310
302
|
paths:
|
|
311
303
|
- www/.yarn
|
|
312
304
|
rules:
|
|
313
|
-
-
|
|
314
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
315
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
305
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
316
306
|
needs:
|
|
317
307
|
- 'www ๐จ app | dev '
|
|
318
308
|
retry: *a1
|
|
@@ -329,9 +319,7 @@ www ๐งช test:
|
|
|
329
319
|
paths:
|
|
330
320
|
- __sbom.json
|
|
331
321
|
rules:
|
|
332
|
-
-
|
|
333
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
334
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
322
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
335
323
|
needs: []
|
|
336
324
|
retry: *a1
|
|
337
325
|
interruptible: true
|
|
@@ -375,10 +363,8 @@ www ๐งช test:
|
|
|
375
363
|
reports:
|
|
376
364
|
dotenv: gitlab_environment.env
|
|
377
365
|
rules:
|
|
378
|
-
- when: never
|
|
379
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
380
366
|
- when: on_success
|
|
381
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
367
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
382
368
|
needs:
|
|
383
369
|
- job: www ๐ฎ lint
|
|
384
370
|
artifacts: false
|