Commit 9406303
authored
chore(ci): workflow cleanup and fixes (#7448)
## Summary
Audit and cleanup of `.github/` CI workflows — fixes bugs, removes dead
code, deduplicates config.
### Changes (one commit each)
1. Fix fuzz corpus restore path mismatch in `run-fuzzer.yml` — restore
appended `-${{ inputs.extra_features }}` but persist did not, so
previously-saved corpora were never restored
2. Fix stale PR message saying "30 days" when `days-before-pr-stale` is
14
3. Remove dead `Install Sweep` / `Timestamp Cache` steps from
`setup-rust` action — they gate on undeclared `inputs.timestamp` so
never run
4. Use `--bin` instead of `--package` in `bench-pr.yml` build step to
match `bench.yml`
5. Right-size job timeouts: `bench.yml` commit-metadata 120m → 10m,
`docs.yml` deploy 120m → 10m, `stale.yml` add missing timeout
6. Deduplicate SQL benchmark matrix — move single source of truth into
`sql-benchmarks.yml` default input, derive lance targets from `mode` at
runtime, sync matrix with develop (adds `local_dir` to statpopgen, drops
stale `scale_factor`/`iterations` from fineweb/S3 entries, adds
`vortex-compact` to clickbench)
7. Set `CARGO_TERM_COLOR: always` in `ci.yml` — `auto` disables color
without a TTY, all other workflows already use `always`
8. Hoist R2 env vars to job-level in `run-fuzzer.yml`,
`minimize_fuzz_corpus_workflow.yml`, `fuzz-coverage.yml` — removes 5
duplicate env blocks
before and after for post merge, and on pr:
```
post-merge — before vs after:
┌──────────────┬─────────────────────┬────────────────────┬───────────────────┬──────────────────┐
│ Entry │ scale_factor before │ scale_factor after │ iterations before │ iterations after │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ clickbench │ - │ - │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpch-nvme │ 1.0 │ 1.0 │ - │ 10 │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpch-s3 │ 1.0 │ 1.0 │ - │ 10 │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpch-nvme-10 │ 10.0 │ 10.0 │ - │ 10 │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpch-s3-10 │ 10.0 │ 10.0 │ - │ 10 │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpcds │ 1.0 │ 1.0 │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ statpopgen │ 100 │ 100 │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ fineweb │ - │ 100 │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ fineweb-s3 │ - │ 100 │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ polarsignals │ 1 │ 1 │ - │ - │
└──────────────┴─────────────────────┴────────────────────┴───────────────────┴──────────────────┘
PR — before vs after:
┌──────────────┬─────────────────────┬────────────────────┬───────────────────┬──────────────────┐
│ Entry │ scale_factor before │ scale_factor after │ iterations before │ iterations after │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ clickbench │ - │ - │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpch-nvme │ 1.0 │ 1.0 │ - │ 10 │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpch-s3 │ 1.0 │ 1.0 │ - │ 10 │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpch-nvme-10 │ 10.0 │ 10.0 │ - │ 10 │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpch-s3-10 │ 10.0 │ 10.0 │ - │ 10 │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ tpcds │ 1.0 │ 1.0 │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ statpopgen │ 100 │ 100 │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ fineweb │ 100 │ 100 │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ fineweb-s3 │ 100 │ 100 │ - │ - │
├──────────────┼─────────────────────┼────────────────────┼───────────────────┼──────────────────┤
│ polarsignals │ 1 │ 1 │ - │ - │
```
---------
Signed-off-by: Alexander Droste <alexander.droste@protonmail.com>1 parent 0e0401c commit 9406303
10 files changed
Lines changed: 49 additions & 208 deletions
File tree
- .github
- actions/setup-rust
- workflows
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
86 | | - | |
87 | | - | |
88 | | - | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | | - | |
93 | | - | |
94 | | - | |
95 | | - | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
137 | 137 | | |
138 | 138 | | |
139 | 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 | | - | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
118 | 118 | | |
119 | 119 | | |
120 | 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 | | - | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
14 | 19 | | |
15 | 20 | | |
16 | 21 | | |
| |||
56 | 61 | | |
57 | 62 | | |
58 | 63 | | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
37 | 42 | | |
38 | 43 | | |
39 | 44 | | |
| |||
64 | 69 | | |
65 | 70 | | |
66 | 71 | | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
| |||
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | 101 | | |
107 | 102 | | |
108 | 103 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
64 | 68 | | |
65 | 69 | | |
66 | 70 | | |
| |||
95 | 99 | | |
96 | 100 | | |
97 | 101 | | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | 102 | | |
104 | 103 | | |
105 | | - | |
| 104 | + | |
106 | 105 | | |
107 | 106 | | |
108 | 107 | | |
| |||
189 | 188 | | |
190 | 189 | | |
191 | 190 | | |
192 | | - | |
193 | | - | |
194 | | - | |
195 | | - | |
196 | | - | |
197 | 191 | | |
198 | 192 | | |
199 | 193 | | |
| |||
0 commit comments