Skip to content

Commit f62c2d6

Browse files
committed
Update
1 parent 8c089af commit f62c2d6

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/jit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- target: aarch64-pc-windows-msvc/msvc
7676
architecture: ARM64
7777
# Forks don't have access to Windows on Arm runners. These jobs are skipped below:
78-
runner: ${{ github.repository_owner == 'python' && 'windows-aarch64' || 'windows-latest' }}
78+
runner: ${{ /github.repository_owner == 'python' && 'windows-aarch64' || 'windows-latest' }}
7979
- target: x86_64-apple-darwin/clang
8080
architecture: x86_64
8181
runner: macos-13

.github/workflows/reusable-windows-msi.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ env:
2020

2121
jobs:
2222
build:
23-
if: inputs.arch != 'ARM64' || github.repository_owner == 'python'
23+
# Forks don't have access to Windows on Arm runners. Skip those:
24+
if: inputs.arch != 'arm64' || github.repository_owner == 'python'
2425
name: installer for ${{ inputs.arch }}
2526
runs-on: ${{ inputs.os }}
2627
timeout-minutes: 60

.github/workflows/reusable-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
jobs:
2626
build:
2727
# Forks don't have access to Windows on Arm runners. Skip those:
28-
if: inputs.arch != 'ARM64' || github.repository_owner == 'python'
28+
if: inputs.arch != 'arm64' || github.repository_owner == 'python'
2929
name: Build and test (${{ inputs.arch }})
3030
runs-on: ${{ inputs.os }}
3131
timeout-minutes: 60

0 commit comments

Comments
 (0)