2022-12-13 16:49:08 +01:00
|
|
|
on: [ push ]
|
|
|
|
|
2022-12-12 09:44:31 +01:00
|
|
|
jobs:
|
|
|
|
build_ubuntu:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-13 16:49:08 +01:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: make
|
|
|
|
run: make
|
|
|
|
|
|
|
|
- name: selftest
|
|
|
|
run: make selftest
|
2022-12-12 09:44:31 +01:00
|
|
|
|
2022-12-13 16:16:17 +01:00
|
|
|
build_macos:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v3
|
2022-12-13 16:49:08 +01:00
|
|
|
|
|
|
|
- name: Install Rust Toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
target: aarch64-apple-darwin
|
|
|
|
override: true
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
2022-12-13 16:16:17 +01:00
|
|
|
- name: make
|
|
|
|
run: make
|
2022-12-13 16:49:08 +01:00
|
|
|
|
2022-12-13 16:16:17 +01:00
|
|
|
- name: selftest
|
|
|
|
run: make selftest
|
2022-12-13 16:49:08 +01:00
|
|
|
|
2022-12-13 16:16:17 +01:00
|
|
|
build_windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v3
|
2022-12-13 16:49:08 +01:00
|
|
|
|
2022-12-13 16:16:17 +01:00
|
|
|
- name: setup msbuild
|
|
|
|
uses: microsoft/setup-msbuild@v1.1.3
|
2022-12-12 09:44:31 +01:00
|
|
|
|
2022-12-13 16:16:17 +01:00
|
|
|
- name: msbuild
|
|
|
|
run: |
|
|
|
|
msbuild windows\ZeroTierOne.sln /m /p:Configuration=Release /property:Platform=x64 /t:ZeroTierOne:Rebuild
|