File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ jobs:
114
114
- tuple : i686-pc-windows-msvc
115
115
os : windows-2025
116
116
- tuple : aarch64-pc-windows-msvc
117
- os : windows-2025
117
+ os : windows-11-arm
118
118
- tuple : x86_64-pc-windows-gnu
119
119
os : windows-2025
120
120
# - tuple: i686-pc-windows-gnu
@@ -192,10 +192,6 @@ jobs:
192
192
tuple : aarch64-apple-ios-macabi
193
193
os : macos-15
194
194
norun : true # https://github.com/rust-lang/stdarch/issues/1206
195
- - target :
196
- tuple : aarch64-pc-windows-msvc
197
- os : windows-2025
198
- norun : true
199
195
200
196
steps :
201
197
- uses : actions/checkout@v4
@@ -204,6 +200,13 @@ jobs:
204
200
run : |
205
201
rustup update nightly --no-self-update
206
202
rustup default nightly
203
+ if : matrix.target.os != 'windows-11-arm'
204
+ - name : Install Rust for `windows-11-arm` runners
205
+ run : |
206
+ curl https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
207
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
208
+ if : matrix.target.os == 'windows-11-arm'
209
+
207
210
- run : rustup target add ${{ matrix.target.tuple }}
208
211
if : matrix.build_std == ''
209
212
- run : |
You can’t perform that action at this time.
0 commit comments