|
@@ -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:
|
|
|
|
- # runs-on: windows-latest
|
|
|
|
- # steps:
|
|
|
|
- # - name: checkout
|
|
|
|
- # uses: actions/checkout@v3
|
|
|
|
|
|
+ build_windows:
|
|
|
|
+ runs-on: windows-latest
|
|
|
|
+ steps:
|
|
|
|
+ - name: gitconfig
|
|
|
|
+ run: |
|
|
|
|
+ git config --global core.autocrlf false
|
|
|
|
+ git config --global core.eol lf
|
|
|
|
+
|
|
|
|
+ - name: checkout
|
|
|
|
+ uses: actions/checkout@v3
|
|
|
|
|
|
- # - name: setup msbuild
|
|
|
|
- # uses: microsoft/[email protected]
|
|
|
|
|
|
+ - name: setup msbuild
|
|
|
|
+ uses: microsoft/[email protected]
|
|
|
|
|
|
- # - name: msbuild
|
|
|
|
- # run: |
|
|
|
|
- # 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
|