Skip to content

Commit 9a1130b

Browse files
committed
Check is-fork in the job
1 parent 765fc2a commit 9a1130b

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/jit.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,16 +134,17 @@ jobs:
134134
- false
135135
is-fork: # only used for the exclusion trick
136136
- ${{ github.repository_owner != 'python' }}
137-
exclude:
138-
- os: ubuntu-24.04-aarch64
139-
is-fork: true
137+
#exclude:
138+
# - os: ubuntu-24.04-aarch64
139+
#is-fork: true
140140
steps:
141141
- uses: actions/checkout@v4
142142
- uses: actions/setup-python@v5
143143
with:
144144
python-version: '3.11'
145145

146146
- name: ${{ runner.os }} (${{ runner.arch }})
147+
if: matrix.is-fork != 'false'
147148
run: |
148149
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ env.llvm }}
149150
export PATH="$(llvm-config-${{ env.llvm }} --bindir):$PATH"

0 commit comments

Comments
 (0)