-
Notifications
You must be signed in to change notification settings - Fork 2
236 lines (185 loc) · 5.71 KB
/
ci.yml
File metadata and controls
236 lines (185 loc) · 5.71 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
name: CI
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
scripts-tests:
name: scripts tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Run scripts unit tests
run: |
python3 -m unittest \
scripts.tests.test_ci_workflows \
scripts.tests.test_check_i18n_parity \
scripts.tests.test_check_openharness_upstream \
scripts.tests.test_verify_version_changelog \
scripts.tests.test_verify_release_consistency \
scripts.tests.test_resolve_release_tag \
scripts.tests.test_provider_health_report \
scripts.tests.test_package_release \
scripts.tests.test_onboard_metrics_report
versioning-guard:
name: versioning guard (PR)
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Verify version/changelog rule
run: |
python3 scripts/verify_version_changelog.py \
--base-ref "${{ github.event.pull_request.base.sha }}" \
--head-ref "${{ github.sha }}"
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Format check
run: cargo fmt --all --check
secrets:
name: gitleaks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Scan for secrets
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_ENABLE_COMMENTS: "false"
test:
name: cargo test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test --workspace --locked
session-replay:
name: session replay (fast) (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Test (session replay)
run: cargo test -p rexos --locked --test session_replay
loopforge-cli-fast:
name: loopforge cli (fast) (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Test (loopforge-cli)
run: cargo test -p loopforge-cli --locked
bedrock-feature-compile:
name: bedrock feature compile (fast)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Check (loopforge-cli with bedrock)
run: cargo check -p loopforge-cli --locked --features bedrock
security-boundaries-fast:
name: security boundaries (fast) (windows)
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Test (rexos-tools web/a2a/browser policy slices)
run: |
cargo test -p rexos-tools --locked tests::web::a2a::
cargo test -p rexos-tools --locked tests::web::fetch::web_fetch_respects_egress_policy_rules
cargo test -p rexos-tools --locked tests::browser::policy::url::
msrv-compile:
name: msrv compile (rust 1.75.0)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust 1.75.0
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.75.0
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Check (workspace, locked)
run: cargo check --workspace --locked
clippy-workspace:
name: clippy workspace (all targets)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Clippy (workspace, all targets)
run: cargo clippy --workspace --all-targets --locked -- -D warnings
docs:
name: docs build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: pip
cache-dependency-path: requirements-docs.txt
- name: Install docs dependencies
run: pip install -r requirements-docs.txt
- name: Build docs
run: python -m mkdocs build --strict