Skip to content

Commit 342af93

Browse files
committed
Remove Native from jit builds.
1 parent e63a289 commit 342af93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/jit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
with:
9797
python-version: '3.11'
9898

99-
- name: Native Windows
99+
- name: Windows
100100
# Forks don't have access to Windows on Arm runners. Skip those:
101101
if: runner.os == 'Windows' && (matrix.architecture != 'ARM64' || github.repository_owner == 'python')
102102
run: |
@@ -108,7 +108,7 @@ jobs:
108108
# This is a bug in the macOS runner image where the pre-installed Python is installed in the same
109109
# directory as the Homebrew Python, which causes the build to fail for macos-13. This line removes
110110
# the symlink to the pre-installed Python so that the Homebrew Python is used instead.
111-
- name: Native macOS
111+
- name: macOS
112112
if: runner.os == 'macOS'
113113
run: |
114114
brew update
@@ -119,7 +119,7 @@ jobs:
119119
make all --jobs 4
120120
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
121121
122-
- name: Native Linux
122+
- name: Linux
123123
if: runner.os == 'Linux'
124124
run: |
125125
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ matrix.llvm }}

0 commit comments

Comments
 (0)