forked from Th0rgal/sandboxed.sh
-
Notifications
You must be signed in to change notification settings - Fork 0
194 lines (164 loc) · 6.35 KB
/
Copy pathci.yml
File metadata and controls
194 lines (164 loc) · 6.35 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
name: CI
on:
push:
branches: [master, main, "release/*"]
pull_request:
branches: [master, main]
types: [opened, synchronize, reopened, ready_for_review]
# Run CI on a schedule to catch issues even without new commits
schedule:
- cron: '0 */6 * * *' # Every 6 hours
# Cancel in-progress runs only on PR pushes — pushes to master and the
# 6-hour scheduled cron share the same `ref` group, so blanket
# `cancel-in-progress: true` had the schedule killing the post-merge
# push run (e.g. PR #400's master push CI was cancelled by the cron
# that fired ~1 min later, leaving master with a non-green badge).
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
# Skip CI on draft PRs unless explicitly requested
if: github.event.pull_request.draft == false || github.event_name == 'push' || github.event_name == 'schedule'
steps:
- uses: actions/checkout@v5
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo registry
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('Cargo.lock', 'Cargo.toml', '**/Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: Cache cargo target
uses: actions/cache@v5
with:
path: target
key: ${{ runner.os }}-cargo-target-test-harness-${{ hashFiles('Cargo.lock', 'Cargo.toml', '**/Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-target-test-harness-
- name: Run tests
run: cargo test --locked --workspace
clippy:
name: Clippy
runs-on: ubuntu-latest
# Skip CI on draft PRs unless explicitly requested
if: github.event.pull_request.draft == false || github.event_name == 'push' || github.event_name == 'schedule'
steps:
- uses: actions/checkout@v5
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Cache cargo registry
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('Cargo.lock', 'Cargo.toml', '**/Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: Cache cargo target
uses: actions/cache@v5
with:
path: target
key: ${{ runner.os }}-cargo-target-${{ github.job }}-${{ hashFiles('Cargo.lock', 'Cargo.toml', '**/Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-target-${{ github.job }}-
- name: Run clippy
run: cargo clippy --locked --workspace -- -D clippy::all
fmt:
name: Format
runs-on: ubuntu-latest
# Skip CI on draft PRs unless explicitly requested
if: github.event.pull_request.draft == false || github.event_name == 'push' || github.event_name == 'schedule'
steps:
- uses: actions/checkout@v5
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
harness-contract:
name: Harness Contract Tests
runs-on: ubuntu-latest
# Skip CI on draft PRs unless explicitly requested
if: github.event.pull_request.draft == false || github.event_name == 'push' || github.event_name == 'schedule'
steps:
- uses: actions/checkout@v5
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo registry
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('Cargo.lock', 'Cargo.toml', '**/Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: Cache cargo target
uses: actions/cache@v5
with:
path: target
key: ${{ runner.os }}-cargo-target-test-harness-${{ hashFiles('Cargo.lock', 'Cargo.toml', '**/Cargo.toml') }}
restore-keys: |
${{ runner.os }}-cargo-target-test-harness-
- name: Run harness contract tests
run: scripts/harness_contract_tests.sh
capability-matrix:
name: Capability Matrix Contract Check
runs-on: ubuntu-latest
# Skip CI on draft PRs unless explicitly requested
if: github.event.pull_request.draft == false || github.event_name == 'push' || github.event_name == 'schedule'
steps:
- uses: actions/checkout@v5
- name: Validate capability matrix and surface contract evidence
run: scripts/check-capability-matrix.sh
dashboard-test:
name: Dashboard Unit Tests
runs-on: ubuntu-latest
# Skip CI on draft PRs unless explicitly requested
if: github.event.pull_request.draft == false || github.event_name == 'push' || github.event_name == 'schedule'
defaults:
run:
working-directory: dashboard
steps:
- uses: actions/checkout@v5
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Cache dashboard dependencies
uses: actions/cache@v5
with:
path: |
~/.bun/install/cache
dashboard/node_modules
key: ${{ runner.os }}-dashboard-bun-${{ hashFiles('dashboard/bun.lock', 'dashboard/package.json') }}
restore-keys: |
${{ runner.os }}-dashboard-bun-
- name: Cache Next.js build artifacts
uses: actions/cache@v5
with:
path: dashboard/.next/cache
key: ${{ runner.os }}-dashboard-next-${{ hashFiles('dashboard/bun.lock', 'dashboard/package.json') }}-${{ hashFiles('dashboard/next.config.ts', 'dashboard/src/**/*', 'dashboard/public/**/*') }}
restore-keys: |
${{ runner.os }}-dashboard-next-
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run unit tests
run: bun run test:unit
- name: Type check and build
run: bun run build