File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9696 if : runner.os == 'macOS'
9797 run : |
9898 brew install llvm@${{ matrix.llvm }}
99- export SDKROOT="$(xcrun --show-sdk-path)"
99+ SDKROOT="$(xcrun --show-sdk-path)" \
100100 ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
101101 make all --jobs 4
102102 ./python.exe -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
@@ -122,10 +122,10 @@ jobs:
122122 sudo apt install --yes "gcc-$HOST" qemu-user
123123 ${{ !matrix.debug && matrix.compiler == 'clang' && './configure --enable-optimizations' || '' }}
124124 ${{ !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 }}
128125 export QEMU_LD_PREFIX="/usr/$HOST"
126+ CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}" \
127+ CPP="$CC --preprocess" \
128+ HOSTRUNNER=qemu-${{ matrix.architecture }} \
129129 ./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
130130 make all --jobs 4
131131 ./python -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
You can’t perform that action at this time.
0 commit comments