Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 09d6f5d

Browse files
authored
GH-126464 Fix JIT CI on aarch64-apple-darwin (GH-126494)
1 parent a38e82b commit 09d6f5d

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/jit.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- x86_64-pc-windows-msvc/msvc
5353
- aarch64-pc-windows-msvc/msvc
5454
- x86_64-apple-darwin/clang
55-
# - aarch64-apple-darwin/clang
55+
- aarch64-apple-darwin/clang
5656
- x86_64-unknown-linux-gnu/gcc
5757
- x86_64-unknown-linux-gnu/clang
5858
- aarch64-unknown-linux-gnu/gcc
@@ -79,11 +79,10 @@ jobs:
7979
architecture: x86_64
8080
runner: macos-13
8181
compiler: clang
82-
# GH-126464: A recent change to either GHA or LLVM broke this job:
83-
# - target: aarch64-apple-darwin/clang
84-
# architecture: aarch64
85-
# runner: macos-14
86-
# compiler: clang
82+
- target: aarch64-apple-darwin/clang
83+
architecture: aarch64
84+
runner: macos-14
85+
compiler: clang
8786
- target: x86_64-unknown-linux-gnu/gcc
8887
architecture: x86_64
8988
runner: ubuntu-22.04
@@ -132,8 +131,8 @@ jobs:
132131
brew update
133132
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
134133
brew install llvm@${{ matrix.llvm }}
135-
SDKROOT="$(xcrun --show-sdk-path)" \
136-
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
134+
export SDKROOT="$(xcrun --show-sdk-path)"
135+
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
137136
make all --jobs 4
138137
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
139138

0 commit comments

Comments
 (0)