fixing windows github builds (#1818)

This commit is contained in:
Sean OMeara 2022-12-14 11:52:30 +01:00 committed by GitHub
parent 10170b41c3
commit 3e41163bbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,6 @@ jobs:
toolchain: stable toolchain: stable
target: aarch64-apple-darwin target: aarch64-apple-darwin
override: true override: true
components: rustfmt, clippy
- name: make - name: make
run: make run: make
@ -33,15 +32,20 @@ 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: gitconfig
# uses: actions/checkout@v3 run: |
git config --global core.autocrlf false
git config --global core.eol lf
# - name: setup msbuild - name: checkout
# uses: microsoft/setup-msbuild@v1.1.3 uses: actions/checkout@v3
# - 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