mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
.github: add macos_build workflow
This commit is contained in:
parent
0d393a3cf7
commit
3d726f3636
23
.github/workflows/macos_build.yml
vendored
Normal file
23
.github/workflows/macos_build.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user