Skip to content

Commit 5d97102

Browse files
Remove clang Linux jobs
1 parent 066f9e0 commit 5d97102

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

.github/workflows/jit.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ jobs:
5454
- x86_64-apple-darwin/clang
5555
- aarch64-apple-darwin/clang
5656
- x86_64-unknown-linux-gnu/gcc
57-
- x86_64-unknown-linux-gnu/clang
5857
- aarch64-unknown-linux-gnu/gcc
59-
- aarch64-unknown-linux-gnu/clang
6058
debug:
6159
- true
6260
- false
@@ -87,18 +85,10 @@ jobs:
8785
architecture: x86_64
8886
runner: ubuntu-22.04
8987
compiler: gcc
90-
- target: x86_64-unknown-linux-gnu/clang
91-
architecture: x86_64
92-
runner: ubuntu-22.04
93-
compiler: clang
9488
- target: aarch64-unknown-linux-gnu/gcc
9589
architecture: aarch64
9690
runner: ubuntu-22.04
9791
compiler: gcc
98-
- target: aarch64-unknown-linux-gnu/clang
99-
architecture: aarch64
100-
runner: ubuntu-22.04
101-
compiler: clang
10292
env:
10393
CC: ${{ matrix.compiler }}
10494
steps:
@@ -157,9 +147,8 @@ jobs:
157147
export HOST=${{ matrix.architecture }}-linux-gnu
158148
sudo apt install --yes "gcc-$HOST" qemu-user
159149
export QEMU_LD_PREFIX="/usr/$HOST"
160-
CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}" \
161-
CPP="$CC --preprocess" \
162-
HOSTRUNNER=qemu-${{ matrix.architecture }} \
150+
CC=$HOST-gcc" \
151+
CPP="$CC --preprocess" HOSTRUNNER=qemu-${{ matrix.architecture }} \
163152
./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
164153
make all --jobs 4
165154
./python -m test --ignorefile=Tools/jit/ignore-tests-emulated-linux.txt --multiprocess 0 --timeout 4500 --verbose2 --verbose3

0 commit comments

Comments
 (0)