Skip to content

Commit 53f3b8e

Browse files
committed
Add BOLT to build matrix
1 parent 8699afc commit 53f3b8e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build.yml

+7
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,17 @@ jobs:
231231
name: >-
232232
Ubuntu
233233
${{ fromJSON(matrix.free-threading) && '(free-threading)' || '' }}
234+
${{ fromJSON(matrix.bolt) && '(bolt)' || '' }}
234235
needs: check_source
235236
if: needs.check_source.outputs.run_tests == 'true'
236237
strategy:
237238
matrix:
238239
free-threading:
239240
- false
240241
- true
242+
bolt:
243+
- false
244+
- true
241245
os:
242246
- ubuntu-24.04
243247
- ubuntu-24.04-aarch64
@@ -246,6 +250,9 @@ jobs:
246250
exclude:
247251
- os: ubuntu-24.04-aarch64
248252
is-fork: true
253+
# Do not test BOLT with free-threading, to conserve resources
254+
- bolt: true
255+
free-threading: true
249256
uses: ./.github/workflows/reusable-ubuntu.yml
250257
with:
251258
config_hash: ${{ needs.check_source.outputs.config_hash }}

0 commit comments

Comments
 (0)