@@ -108,8 +108,8 @@ jobs:
108
108
if: runner.os == 'macOS'
109
109
run : |
110
110
brew install llvm@${{ matrix.llvm }}
111
- export SDKROOT="$(xcrun --show-sdk-path)"
112
- ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
111
+ SDKROOT="$(xcrun --show-sdk-path)" \
112
+ ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
113
113
make all --jobs 4
114
114
./python.exe -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
115
115
@@ -134,10 +134,10 @@ jobs:
134
134
sudo apt install --yes "gcc-$HOST" qemu-user
135
135
${{ !matrix.debug && matrix.compiler == 'clang' && './configure --enable-optimizations' || '' }}
136
136
${{ !matrix.debug && matrix.compiler == 'clang' && 'make profile-run-stamp --jobs 4' || '' }}
137
- export CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}"
138
- export CPP="$CC --preprocess"
139
- export HOSTRUNNER=qemu-${{ matrix.architecture }}
140
137
export QEMU_LD_PREFIX="/usr/$HOST"
141
- ./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
138
+ CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}" \
139
+ CPP="$CC --preprocess" \
140
+ HOSTRUNNER=qemu-${{ matrix.architecture }} \
141
+ ./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
142
142
make all --jobs 4
143
143
./python -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
0 commit comments