diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/daemon.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/daemon.yml b/.github/workflows/daemon.yml index 4d90c83aac..de5e808f08 100644 --- a/.github/workflows/daemon.yml +++ b/.github/workflows/daemon.yml @@ -121,7 +121,7 @@ jobs: config: - os: windows-latest arch: x64 - - os: [self-hosted, ARM64, Windows] + - os: windows-11-arm arch: arm64 runs-on: ${{ matrix.config.os }} steps: @@ -169,11 +169,15 @@ jobs: # The x64 toolchain is needed to build talpid-openvpn-plugin # TODO: Remove once fixed - name: Install Rust x64 target + uses: actions-rust-lang/setup-rust-toolchain@v1 if: ${{ matrix.config.arch == 'arm64' }} - run: rustup target add x86_64-pc-windows-msvc + with: + target: x86_64-pc-windows-msvc - name: Install Rust - run: rustup target add i686-pc-windows-msvc + uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + target: i686-pc-windows-msvc - name: Install msbuild uses: microsoft/setup-msbuild@v1.0.2 |
