mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-23 06:35:49 -07:00
adding aarch64-pc-windows-msvc rust toolchain to github actions
This commit is contained in:
parent
10170b41c3
commit
339a780015
1 changed files with 18 additions and 10 deletions
28
.github/workflows/build.yml
vendored
28
.github/workflows/build.yml
vendored
|
@ -33,15 +33,23 @@ jobs:
|
||||||
- name: selftest
|
- name: selftest
|
||||||
run: make selftest
|
run: make selftest
|
||||||
|
|
||||||
# build_windows:
|
build_windows:
|
||||||
# runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
# steps:
|
steps:
|
||||||
# - name: checkout
|
- name: checkout
|
||||||
# uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
# - name: setup msbuild
|
- name: Install Rust Toolchain
|
||||||
# uses: microsoft/setup-msbuild@v1.1.3
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
target: aarch64-pc-windows-msvc
|
||||||
|
override: true
|
||||||
|
components: rustfmt, clippy
|
||||||
|
|
||||||
# - name: msbuild
|
- name: setup msbuild
|
||||||
# run: |
|
uses: microsoft/setup-msbuild@v1.1.3
|
||||||
# msbuild windows\ZeroTierOne.sln /m /p:Configuration=Release /property:Platform=x64 /t:ZeroTierOne:Rebuild
|
|
||||||
|
- name: msbuild
|
||||||
|
run: |
|
||||||
|
msbuild windows\ZeroTierOne.sln /m /p:Configuration=Release /property:Platform=x64 /t:ZeroTierOne:Rebuild
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue