Skip to content

Commit 8ddfcf8

Browse files
committed
[TRY] use the new windows-11-arm runners for aarch64-pc-windows-msvc
1 parent 82275c2 commit 8ddfcf8

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
- tuple: i686-pc-windows-msvc
115115
os: windows-2025
116116
- tuple: aarch64-pc-windows-msvc
117-
os: windows-2025
117+
os: windows-11-arm
118118
- tuple: x86_64-pc-windows-gnu
119119
os: windows-2025
120120
# - tuple: i686-pc-windows-gnu
@@ -193,10 +193,6 @@ jobs:
193193
tuple: aarch64-apple-ios-macabi
194194
os: macos-15
195195
norun: true # https://github.com/rust-lang/stdarch/issues/1206
196-
- target:
197-
tuple: aarch64-pc-windows-msvc
198-
os: windows-2025
199-
norun: true
200196

201197
steps:
202198
- uses: actions/checkout@v4
@@ -205,6 +201,11 @@ jobs:
205201
run: |
206202
rustup update nightly --no-self-update
207203
rustup default nightly
204+
if: matrix.target.os != 'windows-11-arm'
205+
- name: Install Rust in `windows-11-arm` runners # FIXME: currently the `windows-11-arm` runners don't come with rustup
206+
uses: dtolnay/rust-toolchain@nightly
207+
if: matrix.target.os == 'windows-11-arm'
208+
208209
- run: rustup target add ${{ matrix.target.tuple }}
209210
if: matrix.build_std == ''
210211
- run: |

0 commit comments

Comments
 (0)