Browse Source

.github: add macos_build workflow

gps-1.3.1
Siddharth Purohit 4 years ago committed by Andrew Tridgell
parent
commit
3d726f3636
  1. 23
      .github/workflows/macos_build.yml

23
.github/workflows/macos_build.yml

@ -0,0 +1,23 @@ @@ -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
Loading…
Cancel
Save