We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8699afc commit 53f3b8eCopy full SHA for 53f3b8e
.github/workflows/build.yml
@@ -231,13 +231,17 @@ jobs:
231
name: >-
232
Ubuntu
233
${{ fromJSON(matrix.free-threading) && '(free-threading)' || '' }}
234
+ ${{ fromJSON(matrix.bolt) && '(bolt)' || '' }}
235
needs: check_source
236
if: needs.check_source.outputs.run_tests == 'true'
237
strategy:
238
matrix:
239
free-threading:
240
- false
241
- true
242
+ bolt:
243
+ - false
244
+ - true
245
os:
246
- ubuntu-24.04
247
- ubuntu-24.04-aarch64
@@ -246,6 +250,9 @@ jobs:
250
exclude:
251
- os: ubuntu-24.04-aarch64
248
252
is-fork: true
253
+ # Do not test BOLT with free-threading, to conserve resources
254
+ - bolt: true
255
+ free-threading: true
249
256
uses: ./.github/workflows/reusable-ubuntu.yml
257
with:
258
config_hash: ${{ needs.check_source.outputs.config_hash }}
0 commit comments