2021-06-25 04:28:42 -03:00
|
|
|
name: Macos Build
|
|
|
|
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
concurrency:
|
|
|
|
group: ci-${{github.workflow}}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-02-03 04:59:53 -04:00
|
|
|
runs-on: macos-latest
|
2021-06-28 07:37:55 -03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false # don't cancel if a job from the matrix fails
|
|
|
|
matrix:
|
|
|
|
config: [
|
|
|
|
sitl,
|
|
|
|
CubeOrange,
|
|
|
|
]
|
2021-06-25 04:28:42 -03:00
|
|
|
|
|
|
|
steps:
|
2022-12-09 07:47:48 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-28 07:37:55 -03:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2021-06-25 04:28:42 -03:00
|
|
|
- name: Install Prerequisites
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2021-06-28 07:37:55 -03:00
|
|
|
if [[ ${{ matrix.config }} == "sitl" ]]; then
|
|
|
|
export DO_AP_STM_ENV=0
|
|
|
|
fi
|
2021-06-25 04:28:42 -03:00
|
|
|
Tools/environment_install/install-prereqs-mac.sh -y
|
|
|
|
source ~/.bash_profile
|
2021-06-28 07:37:55 -03:00
|
|
|
# Put ccache into github cache for faster build
|
|
|
|
- name: Prepare ccache timestamp
|
|
|
|
id: ccache_cache_timestamp
|
2023-02-07 12:59:51 -04:00
|
|
|
shell: bash
|
2021-06-28 07:37:55 -03:00
|
|
|
run: |
|
|
|
|
NOW=$(date -u +"%F-%T")
|
2023-02-07 12:48:57 -04:00
|
|
|
echo "timestamp=${NOW}" >> $GITHUB_OUTPUT
|
2021-06-28 07:37:55 -03:00
|
|
|
- name: ccache cache files
|
2022-12-09 07:47:48 -04:00
|
|
|
uses: actions/cache@v3
|
2021-06-28 07:37:55 -03:00
|
|
|
with:
|
|
|
|
path: ~/.ccache
|
|
|
|
key: ${{github.workflow}}-ccache-${{matrix.config}}-${{steps.ccache_cache_timestamp.outputs.timestamp}}
|
|
|
|
restore-keys: ${{github.workflow}}-ccache-${{matrix.config}} # restore ccache from either previous build on this branch or on master
|
|
|
|
- name: setup ccache
|
|
|
|
run: |
|
2022-02-22 01:23:32 -04:00
|
|
|
. .github/workflows/ccache.env
|
2021-06-28 07:37:55 -03:00
|
|
|
- name: test build ${{matrix.config}}
|
|
|
|
env:
|
|
|
|
CI_BUILD_TARGET: ${{matrix.config}}
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
source ~/.bash_profile
|
|
|
|
PATH="/github/home/.local/bin:$PATH"
|
2021-06-25 04:28:42 -03:00
|
|
|
echo $PATH
|
2021-06-28 07:37:55 -03:00
|
|
|
./waf configure --board ${{matrix.config}}
|
|
|
|
./waf
|
|
|
|
ccache -s
|
|
|
|
ccache -z
|