We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d906bde commit 8699afcCopy full SHA for 8699afc
.github/workflows/reusable-ubuntu.yml
@@ -11,6 +11,11 @@ on:
11
required: false
12
type: boolean
13
default: false
14
+ bolt-optimizations:
15
+ description: Whether to enable BOLT optimizations
16
+ required: false
17
+ type: boolean
18
+ default: false
19
os:
20
description: OS to run the job
21
required: true
@@ -81,6 +86,7 @@ jobs:
81
86
--enable-safety
82
87
--with-openssl="$OPENSSL_DIR"
83
88
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
89
+ ${{ fromJSON(inputs.bolt-optimizations) && '--enable-bolt' || '' }}
84
90
- name: Build CPython out-of-tree
85
91
if: ${{ inputs.free-threading }}
92
working-directory: ${{ env.CPYTHON_BUILDDIR }}
0 commit comments