Unverified Commit fc8f3dad authored by Alex Gaynor's avatar Alex Gaynor Committed by GitHub
Browse files

Merge pull request #2407 from saschanaz/win-arm64

Run tests on windows-11-arm
parents 93f9e02e 32acdc74
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
@@ -86,15 +86,22 @@ jobs:
      - run: cargo check -p openssl

  windows-vcpkg:
    name: windows-vcpkg
    runs-on: windows-latest
    strategy:
      matrix:
        os:
          - runner: windows-latest
            arch: x64
          - runner: windows-11-arm
            arch: arm64
    name: windows-vcpkg-${{ matrix.os.arch }}
    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