We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ecf66 commit 8025cafCopy full SHA for 8025caf
1 file changed
.github/workflows/reusable-ubuntu.yml
@@ -8,6 +8,11 @@ on:
8
required: false
9
type: boolean
10
default: false
11
+ debug:
12
+ description: Whether to create a Debug Build
13
+ required: false
14
+ type: boolean
15
+ default: true
16
free-threading:
17
description: Whether to use free-threaded mode
18
@@ -84,10 +89,10 @@ jobs:
84
89
PROFILE_TASK='-m test --pgo --ignore test_unpickle_module_race'
85
90
../cpython-ro-srcdir/configure
86
91
--config-cache
87
- --with-pydebug
88
92
--enable-slower-safety
93
--enable-safety
94
--with-openssl="$OPENSSL_DIR"
95
+ ${{ fromJSON(inputs.debug) && '--with-pydebug' || '' }}
96
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
97
${{ fromJSON(inputs.bolt-optimizations) && '--enable-bolt' || '' }}
98
- name: Build CPython out-of-tree
0 commit comments