.github: add macos_build workflow

This commit is contained in:
Siddharth Purohit 2021-06-25 12:58:42 +05:30 committed by Andrew Tridgell
parent 0d393a3cf7
commit 3d726f3636

23
.github/workflows/macos_build.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Macos Build
on: [push, pull_request, workflow_dispatch]
concurrency:
group: ci-${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: 'macos-latest'
steps:
- uses: actions/checkout@v2
- name: Install Prerequisites
shell: bash
run: |
Tools/environment_install/install-prereqs-mac.sh -y
source ~/.bash_profile
echo $PATH
./waf configure --board CubeOrange
./waf plane
./waf configure --board sitl
./waf plane