File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,9 @@ jobs:
145
145
# There is no platform-specific code in webpki. Choose a handful of
146
146
# platforms mostly to smoketest that the build machinery in mk/ is
147
147
# portable.
148
+ # Specifically choose `aarch64-pc-windows-msvc` since it was new in
149
+ # *ring* 0.17.
150
+ - aarch64-pc-windows-msvc
148
151
- arm-unknown-linux-gnueabihf
149
152
- i686-pc-windows-msvc
150
153
- x86_64-unknown-linux-musl
@@ -168,6 +171,11 @@ jobs:
168
171
rust_channel : 1.46.0
169
172
170
173
include :
174
+ - target : aarch64-pc-windows-msvc
175
+ host_os : windows-latest
176
+ # GitHub Actions doesn't have a way to run this target yet.
177
+ cargo_options : --no-run
178
+
171
179
- target : arm-unknown-linux-gnueabihf
172
180
host_os : ubuntu-22.04
173
181
@@ -200,6 +208,11 @@ jobs:
200
208
- if : ${{ matrix.target == 'aarch64-apple-darwin' }}
201
209
run : echo "DEVELOPER_DIR=/Applications/Xcode_12.2.app/Contents/Developer" >> $GITHUB_ENV
202
210
211
+ - if : ${{ matrix.target == 'aarch64-pc-windows-msvc' }}
212
+ run : |
213
+ echo "C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin" >> $GITHUB_PATH
214
+ shell : bash
215
+
203
216
- if : ${{ !contains(matrix.host_os, 'windows') }}
204
217
run : |
205
218
mk/cargo.sh test -vv --target=${{ matrix.target }} ${{ matrix.cargo_options }} ${{ matrix.features }} ${{ matrix.mode }}
You can’t perform that action at this time.
0 commit comments