-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (62 loc) · 1.93 KB
/
ci.yml
File metadata and controls
77 lines (62 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: ci
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
blueprint-quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Prepare shared CI baseline
uses: ./.github/actions/prepare-blueprint-ci
- name: Run quality gates
run: |
make quality-ci-blueprint
- name: Run canonical slow integration lane on main updates
if: github.event_name == 'push'
run: |
make quality-ci-slow-integration
- name: Run canonical full e2e lane on main updates
if: github.event_name == 'push'
run: |
make quality-ci-full-e2e
- name: Upload runtime contract drift report artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: runtime-contract-drift-report
path: artifacts/blueprint/runtime_contract_drift_report.json
if-no-files-found: warn
generated-consumer-smoke:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Prepare shared CI baseline
uses: ./.github/actions/prepare-blueprint-ci
- name: Smoke generated consumer baseline
run: |
make quality-ci-generated-consumer-smoke
upgrade-e2e-validation:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Prepare shared CI baseline
uses: ./.github/actions/prepare-blueprint-ci
- name: Run upgrade e2e validation
run: |
make quality-ci-upgrade-validate
- name: Upload upgrade validation junit artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: upgrade-validate-junit
path: artifacts/blueprint/upgrade_validate/upgrade_validate_junit.xml
if-no-files-found: warn