File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff 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,10 +250,14 @@ 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 }}
252259 free-threading : ${{ matrix.free-threading }}
260+ bolt-optimizations : ${{ matrix.bolt }}
253261 os : ${{ matrix.os }}
254262
255263 build_ubuntu_ssltests :
You can’t perform that action at this time.
0 commit comments