File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 96
96
if : runner.os == 'macOS'
97
97
run : |
98
98
brew install llvm@${{ matrix.llvm }}
99
- export SDKROOT="$(xcrun --show-sdk-path)"
99
+ SDKROOT="$(xcrun --show-sdk-path)" \
100
100
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
101
101
make all --jobs 4
102
102
./python.exe -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
@@ -122,10 +122,10 @@ jobs:
122
122
sudo apt install --yes "gcc-$HOST" qemu-user
123
123
${{ !matrix.debug && matrix.compiler == 'clang' && './configure --enable-optimizations' || '' }}
124
124
${{ !matrix.debug && matrix.compiler == 'clang' && 'make profile-run-stamp --jobs 4' || '' }}
125
- export CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}"
126
- export CPP="$CC --preprocess"
127
- export HOSTRUNNER=qemu-${{ matrix.architecture }}
128
- export QEMU_LD_PREFIX="/usr/$HOST"
125
+ CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}" \
126
+ CPP="$CC --preprocess" \
127
+ HOSTRUNNER=qemu-${{ matrix.architecture }} \
128
+ QEMU_LD_PREFIX="/usr/$HOST" \
129
129
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }} --build=x86_64-linux-gnu --host="$HOST" --with-build-python=../build/bin/python3 --with-pkg-config=no ac_cv_buggy_getaddrinfo=no ac_cv_file__dev_ptc=no ac_cv_file__dev_ptmx=yes
130
130
make all --jobs 4
131
131
./python -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
You can’t perform that action at this time.
0 commit comments