2022-12-13 15:49:08 +00:00
|
|
|
on: [ push ]
|
|
|
|
|
2022-12-12 08:44:31 +00:00
|
|
|
jobs:
|
|
|
|
build_ubuntu:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-13 15:49:08 +00:00
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: make
|
|
|
|
run: make
|
|
|
|
|
|
|
|
- name: selftest
|
|
|
|
run: make selftest
|
2022-12-12 08:44:31 +00:00
|
|
|
|
2022-12-13 15:16:17 +00:00
|
|
|
build_macos:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v3
|
2022-12-13 15:49:08 +00: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 15:16:17 +00:00
|
|
|
- name: make
|
|
|
|
run: make
|
2022-12-13 15:49:08 +00:00
|
|
|
|
2022-12-13 15:16:17 +00:00
|
|
|
- name: selftest
|
|
|
|
run: make selftest
|
2022-12-13 15:49:08 +00:00
|
|
|
|
2022-12-13 16:20:52 +00:00
|
|
|
# build_windows:
|
|
|
|
# runs-on: windows-latest
|
|
|
|
# steps:
|
|
|
|
# - name: checkout
|
|
|
|
# uses: actions/checkout@v3
|
|
|
|
|
|
|
|
# - 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
|