diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2024-11-06 03:09:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-06 03:09:04 (GMT) |
commit | a204c63919ca7ce528d8e3ab4196a4aa1a2b6ac4 (patch) | |
tree | 111e5eb5c85666e38e4ca95a03828aa665f0ab86 /.github | |
parent | 83ba8c2bba834c0b92de669cac16fcda17485e0e (diff) | |
download | cpython-a204c63919ca7ce528d8e3ab4196a4aa1a2b6ac4.zip cpython-a204c63919ca7ce528d8e3ab4196a4aa1a2b6ac4.tar.gz cpython-a204c63919ca7ce528d8e3ab4196a4aa1a2b6ac4.tar.bz2 |
GH-126464: Temporarily disable `aarch64-apple-darwin` JIT CI jobs (gh-126465)
* Temporarily disable aarch64-apple-darwin JIT CI jobs
* Also up here
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/jit.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/jit.yml b/.github/workflows/jit.yml index 48f0581..897c692 100644 --- a/.github/workflows/jit.yml +++ b/.github/workflows/jit.yml @@ -52,7 +52,7 @@ jobs: - x86_64-pc-windows-msvc/msvc - aarch64-pc-windows-msvc/msvc - x86_64-apple-darwin/clang - - aarch64-apple-darwin/clang + # - aarch64-apple-darwin/clang - x86_64-unknown-linux-gnu/gcc - x86_64-unknown-linux-gnu/clang - aarch64-unknown-linux-gnu/gcc @@ -79,10 +79,11 @@ jobs: architecture: x86_64 runner: macos-13 compiler: clang - - target: aarch64-apple-darwin/clang - architecture: aarch64 - runner: macos-14 - compiler: clang + # GH-126464: A recent change to either GHA or LLVM broke this job: + # - target: aarch64-apple-darwin/clang + # architecture: aarch64 + # runner: macos-14 + # compiler: clang - target: x86_64-unknown-linux-gnu/gcc architecture: x86_64 runner: ubuntu-22.04 |