Skip to content

Commit fc9fa46

Browse files
committed
Run tests on windows-11-arm
1 parent eb88fb0 commit fc9fa46

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,21 @@ jobs:
8787

8888
windows-vcpkg:
8989
name: windows-vcpkg
90-
runs-on: windows-latest
90+
strategy:
91+
matrix:
92+
os:
93+
- runner: windows-latest
94+
arch: x64
95+
- runner: windows-11-arm
96+
arch: aarch64
97+
runs-on: {{ matrix.os.runner }}
9198
steps:
9299
- uses: actions/checkout@v4
93100
- uses: sfackler/actions/rustup@master
94101
- run: echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
95102
id: rust-version
96103
- run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
97-
- run: vcpkg install openssl:x64-windows-static-md
104+
- run: vcpkg install openssl:{{ matrix.os.arch }}-windows-static-md
98105
- uses: actions/cache@v4
99106
with:
100107
path: ~/.cargo/registry/index

0 commit comments

Comments
 (0)