File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -87,14 +87,21 @@ jobs:
87
87
88
88
windows-vcpkg :
89
89
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 }}
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