File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ jobs:
116
116
- tuple : i686-pc-windows-msvc
117
117
os : windows-2025
118
118
- tuple : aarch64-pc-windows-msvc
119
- os : windows-2025
119
+ os : windows-11-arm
120
120
- tuple : x86_64-pc-windows-gnu
121
121
os : windows-2025
122
122
# - tuple: i686-pc-windows-gnu
@@ -199,24 +199,30 @@ jobs:
199
199
tuple : aarch64-apple-ios-macabi
200
200
os : macos-15
201
201
norun : true # https://github.com/rust-lang/stdarch/issues/1206
202
- - target :
203
- tuple : aarch64-pc-windows-msvc
204
- os : windows-2025
205
- norun : true
206
202
207
203
steps :
208
204
- uses : actions/checkout@v4
209
205
- name : Install Rust
210
206
run : |
211
207
rustup update nightly --no-self-update
212
208
rustup default nightly
209
+ shell : bash
210
+ if : matrix.target.os != 'windows-11-arm'
211
+ - name : Install Rust for `windows-11-arm` runners
212
+ run : |
213
+ curl https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
214
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
215
+ shell : bash
216
+ if : matrix.target.os == 'windows-11-arm'
217
+
213
218
- run : rustup target add ${{ matrix.target.tuple }}
219
+ shell : bash
214
220
if : matrix.build_std == ''
215
221
- run : |
216
222
rustup component add rust-src
217
223
echo "CARGO_UNSTABLE_BUILD_STD=std" >> $GITHUB_ENV
224
+ shell: bash
218
225
if: matrix.build_std != ''
219
- - run : cargo generate-lockfile
220
226
221
227
# Configure some env vars based on matrix configuration
222
228
- run : echo "PROFILE=--profile=${{matrix.profile}}" >> $GITHUB_ENV
You can’t perform that action at this time.
0 commit comments