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 d990073 commit 399986eCopy full SHA for 399986e
.github/workflows/jit.yml
@@ -131,9 +131,9 @@ jobs:
131
brew update
132
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
133
brew install llvm@${{ matrix.llvm }}
134
- SDKROOT="$(xcrun --show-sdk-path)" \
135
- ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
136
- SDKROOT="$(xcrun --show-sdk-path)" make all --jobs 4
+ export SDKROOT="$(xcrun --show-sdk-path)"
+ ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
+ make all --jobs 4
137
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
138
139
- name: Native Linux
0 commit comments