mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 08:57:26 +02:00
adding github builds (#1816)
This commit is contained in:
parent
cfa1d8434e
commit
1aee28aef7
1 changed files with 51 additions and 0 deletions
51
.github/workflows/build.yml
vendored
Normal file
51
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,51 @@
|
|||
on: [ push ]
|
||||
|
||||
jobs:
|
||||
build_ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: make
|
||||
run: make
|
||||
|
||||
build_macos:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: make
|
||||
run: make
|
||||
|
||||
test_ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: cargo test
|
||||
run: cargo test -v
|
||||
|
||||
test_macos:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: cargo test
|
||||
run: cargo test -v
|
||||
|
||||
# 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
|
Loading…
Add table
Reference in a new issue