From 3d726f363612512d90312dc04d6b7cfb2fda585c Mon Sep 17 00:00:00 2001 From: Siddharth Purohit Date: Fri, 25 Jun 2021 12:58:42 +0530 Subject: [PATCH] .github: add macos_build workflow --- .github/workflows/macos_build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/macos_build.yml diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml new file mode 100644 index 0000000000..bdf9d5753d --- /dev/null +++ b/.github/workflows/macos_build.yml @@ -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