Skip to content

Commit fc8f3da

Browse files
authored
Merge pull request #2407 from saschanaz/win-arm64
Run tests on windows-11-arm
2 parents 93f9e02 + 32acdc7 commit fc8f3da

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,22 @@ jobs:
8686
- run: cargo check -p openssl
8787

8888
windows-vcpkg:
89-
name: windows-vcpkg
90-
runs-on: windows-latest
89+
strategy:
90+
matrix:
91+
os:
92+
- runner: windows-latest
93+
arch: x64
94+
- runner: windows-11-arm
95+
arch: arm64
96+
name: windows-vcpkg-${{ matrix.os.arch }}
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)