2020-11-23 12:27:11 -04:00
name : test Linux SBC
2020-12-15 13:02:54 -04:00
on : [ push, pull_request, workflow_dispatch]
2020-11-23 12:27:11 -04:00
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
2021-06-23 04:42:11 -03:00
concurrency :
group : ci-${{github.workflow}}-${{ github.ref }}
cancel-in-progress : true
2020-11-23 12:27:11 -04:00
jobs :
build :
runs-on : ubuntu-20.04
2021-01-05 17:42:06 -04:00
container : ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
2020-11-23 12:27:11 -04:00
strategy :
fail-fast : false # don't cancel if a job from the matrix fails
matrix :
config : [
2021-09-01 06:18:06 -03:00
linux,
navigator,
navio,
navio2,
bbbmini,
bhat,
bebop,
erlebrain2,
pxfmini,
pxf
2020-11-23 12:27:11 -04:00
]
toolchain : [
armhf,
]
include :
- config : navigator
toolchain : armhf-musl
2021-09-01 06:18:06 -03:00
- config : linux
toolchain : base # GCC
2020-11-23 12:27:11 -04:00
exclude :
- config : navigator
toolchain : armhf
2021-09-01 06:18:06 -03:00
- config : linux
toolchain : armhf
2020-11-23 12:27:11 -04:00
steps :
# git checkout the PR
2022-12-09 07:47:48 -04:00
- uses : actions/checkout@v3
2020-11-23 12:27:11 -04:00
with :
submodules : 'recursive'
# Put ccache into github cache for faster build
- name : Prepare ccache timestamp
id : ccache_cache_timestamp
run : |
NOW=$(date -u +"%F-%T")
2023-02-03 04:59:53 -04:00
echo "timestamp=${NOW}" >> $GITHUB_OUTPUT
2020-11-23 12:27:11 -04:00
- name : ccache cache files
2022-12-09 07:47:48 -04:00
uses : actions/cache@v3
2020-11-23 12:27:11 -04:00
with :
path : ~/.ccache
key : ${{github.workflow}}-ccache-${{matrix.config}}-${{ matrix.toolchain }}-${{steps.ccache_cache_timestamp.outputs.timestamp}}
2023-02-07 12:59:51 -04:00
restore-keys : ${{github.workflow}}-ccache-${{matrix.config}}-${{ matrix.toolchain }}- # restore ccache from either previous build on this branch or on master
2020-11-23 12:27:11 -04:00
- name : setup ccache
run : |
2022-02-22 01:23:32 -04:00
. .github/workflows/ccache.env
2020-11-23 12:27:11 -04:00
- name : test ${{matrix.config}} ${{ matrix.toolchain }}
env :
CI_BUILD_TARGET : ${{matrix.config}}
shell : bash
run : |
2023-02-03 13:45:49 -04:00
git config --global --add safe.directory ${GITHUB_WORKSPACE}
2021-09-01 06:18:06 -03:00
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
2021-09-27 07:33:50 -03:00
export CC=clang
export CXX=clang++
2020-11-23 12:27:11 -04:00
fi
PATH="/github/home/.local/bin:$PATH"
Tools/scripts/build_ci.sh
ccache -s
ccache -z