Skip to content

Commit dd49405

Browse files
Revert removing CC and CPP"
1 parent 9ed29a3 commit dd49405

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/jit.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,10 @@ jobs:
147147
export HOST=${{ matrix.architecture }}-linux-gnu
148148
sudo apt install --yes "gcc-$HOST" qemu-user
149149
export QEMU_LD_PREFIX="/usr/$HOST"
150-
HOSTRUNNER=qemu-${{ matrix.architecture }} \
151-
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '' }} --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
150+
CC="$HOST-gcc" \
151+
CPP="$HOST-gcc --preprocess" \
152+
HOSTRUNNER=qemu-${{ matrix.architecture }} \
153+
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '' }} --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
152154
make all --jobs 4
153155
./python -m test --ignorefile=Tools/jit/ignore-tests-emulated-linux.txt --multiprocess 0 --timeout 4500 --verbose2 --verbose3
154156

0 commit comments

Comments
 (0)