Skip to content

Commit 5f9c410

Browse files
committed
Move bolt flags into alphabetical order
1 parent 01cb8d8 commit 5f9c410

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,10 @@ jobs:
236236
if: needs.check_source.outputs.run_tests == 'true'
237237
strategy:
238238
matrix:
239-
free-threading:
239+
bolt:
240240
- false
241241
- true
242-
bolt:
242+
free-threading:
243243
- false
244244
- true
245245
os:
@@ -259,8 +259,8 @@ jobs:
259259
uses: ./.github/workflows/reusable-ubuntu.yml
260260
with:
261261
config_hash: ${{ needs.check_source.outputs.config_hash }}
262-
free-threading: ${{ matrix.free-threading }}
263262
bolt-optimizations: ${{ matrix.bolt }}
263+
free-threading: ${{ matrix.free-threading }}
264264
os: ${{ matrix.os }}
265265

266266
build_ubuntu_ssltests:

.github/workflows/reusable-ubuntu.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66
config_hash:
77
required: true
88
type: string
9-
free-threading:
10-
description: Whether to use free-threaded mode
9+
bolt-optimizations:
10+
description: Whether to enable BOLT optimizations
1111
required: false
1212
type: boolean
1313
default: false
14-
bolt-optimizations:
15-
description: Whether to enable BOLT optimizations
14+
free-threading:
15+
description: Whether to use free-threaded mode
1616
required: false
1717
type: boolean
1818
default: false

0 commit comments

Comments
 (0)