File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -86,15 +86,22 @@ jobs:
86
86
- run : cargo check -p openssl
87
87
88
88
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 }}
91
98
steps :
92
99
- uses : actions/checkout@v4
93
100
- uses : sfackler/actions/rustup@master
94
101
- run : echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
95
102
id : rust-version
96
103
- 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
98
105
- uses : actions/cache@v4
99
106
with :
100
107
path : ~/.cargo/registry/index
You can’t perform that action at this time.
0 commit comments