Skip to content
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,21 @@ jobs:

windows-vcpkg:
name: windows-vcpkg
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh, can you include the arch in the job name

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's already visible as windows-vcpkg (windows-11-arm, arm64) but sure.

runs-on: windows-latest
strategy:
matrix:
os:
- runner: windows-latest
arch: x64
- runner: windows-11-arm
arch: arm64
runs-on: ${{ matrix.os.runner }}
steps:
- uses: actions/checkout@v4
- uses: sfackler/actions/rustup@master
- run: echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
id: rust-version
- run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
- run: vcpkg install openssl:x64-windows-static-md
- run: vcpkg install openssl:${{ matrix.os.arch }}-windows-static-md
- uses: actions/cache@v4
with:
path: ~/.cargo/registry/index
Expand Down