diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index db836c6ca..fa3c59829 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,15 +33,23 @@ jobs: - name: selftest run: make selftest - # build_windows: - # runs-on: windows-latest - # steps: - # - name: checkout - # uses: actions/checkout@v3 + build_windows: + runs-on: windows-latest + steps: + - name: checkout + uses: actions/checkout@v3 - # - name: setup msbuild - # uses: microsoft/setup-msbuild@v1.1.3 + - name: Install Rust Toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + target: aarch64-pc-windows-msvc + override: true + components: rustfmt, clippy - # - name: msbuild - # run: | - # msbuild windows\ZeroTierOne.sln /m /p:Configuration=Release /property:Platform=x64 /t:ZeroTierOne:Rebuild + - name: setup msbuild + uses: microsoft/setup-msbuild@v1.1.3 + + - name: msbuild + run: | + msbuild windows\ZeroTierOne.sln /m /p:Configuration=Release /property:Platform=x64 /t:ZeroTierOne:Rebuild