2020-11-23 12:27:11 -04:00
name : test Linux SBC
2023-02-08 18:33:17 -04:00
on :
push :
paths-ignore :
# remove non LINUX HAL
- 'libraries/AP_HAL_ChibiOS/**'
- 'libraries/AP_HAL_ESP32/**'
- 'libraries/AP_HAL_SITL/**'
# remove non SITL directories
- 'Tools/AP_Bootloader/**'
- 'Tools/AP_Periph/**'
- 'Tools/bootloaders/**'
- 'Tools/CHDK-Script/**'
- 'Tools/CodeStyle/**'
- 'Tools/completion/**'
- 'Tools/CPUInfo/**'
- 'Tools/debug/**'
- 'Tools/environment_install/**'
- 'Tools/FilterTestTool/**'
- 'Tools/Frame_params/**'
- 'Tools/geotag/**'
- 'Tools/GIT_Test/**'
- 'Tools/gittools/**'
- 'Tools/Hello/**'
- 'Tools/IO_Firmware/**'
- 'Tools/LogAnalyzer/**'
- 'Tools/mavproxy_modules/**'
- 'Tools/Pozyx/**'
- 'Tools/PrintVersion.py'
- 'Tools/Replay/**'
- 'Tools/simulink/**'
- 'Tools/UDP_Proxy/**'
- 'Tools/vagrant/**'
- 'Tools/Vicon/**'
# Discard file from Tools/scripts as not used
- 'Tools/scripts/build_sizes/**'
- 'Tools/scripts/build_tests/**'
- 'Tools/scripts/CAN/**'
- 'Tools/scripts/signing/**'
# Remove autotests stuff
- 'Tools/autotest/**'
# Remove markdown files as irrelevant
- '**.md'
# Remove dotfile at root directory
- './.dir-locals.el'
- './.dockerignore'
- './.editorconfig'
- './.flake8'
- './.gitattributes'
- './.github'
- './.gitignore'
- './.pre-commit-config.yaml'
- './.pydevproject'
- './.valgrind-suppressions'
- './.valgrindrc'
- 'Dockerfile'
- 'Vagrantfile'
- 'Makefile'
# Remove some directories check
- '.vscode/**'
- '.github/ISSUE_TEMPLATE/**'
2023-08-22 19:06:17 -03:00
# Remove change on other workflows
- '.github/workflows/test_environment.yml'
2023-02-08 18:33:17 -04:00
pull_request :
paths-ignore :
# remove non LINUX HAL
- 'libraries/AP_HAL_ChibiOS/**'
- 'libraries/AP_HAL_ESP32/**'
- 'libraries/AP_HAL_SITL/**'
# remove non SITL directories
- 'Tools/AP_Bootloader/**'
- 'Tools/AP_Periph/**'
- 'Tools/bootloaders/**'
- 'Tools/CHDK-Script/**'
- 'Tools/CodeStyle/**'
- 'Tools/completion/**'
- 'Tools/CPUInfo/**'
- 'Tools/debug/**'
- 'Tools/environment_install/**'
- 'Tools/FilterTestTool/**'
- 'Tools/Frame_params/**'
- 'Tools/geotag/**'
- 'Tools/GIT_Test/**'
- 'Tools/gittools/**'
- 'Tools/Hello/**'
- 'Tools/IO_Firmware/**'
- 'Tools/LogAnalyzer/**'
- 'Tools/mavproxy_modules/**'
- 'Tools/Pozyx/**'
- 'Tools/PrintVersion.py'
- 'Tools/Replay/**'
- 'Tools/simulink/**'
- 'Tools/UDP_Proxy/**'
- 'Tools/vagrant/**'
- 'Tools/Vicon/**'
# Discard python file from Tools/scripts as not used
- 'Tools/scripts/**.py'
- 'Tools/scripts/build_sizes/**'
- 'Tools/scripts/build_tests/**'
- 'Tools/scripts/CAN/**'
- 'Tools/scripts/signing/**'
# Remove autotests stuff
- 'Tools/autotest/**'
# Remove markdown files as irrelevant
- '**.md'
# Remove dotfile at root directory
- './.dir-locals.el'
- './.dockerignore'
- './.editorconfig'
- './.flake8'
- './.gitattributes'
- './.github'
- './.gitignore'
- './.pre-commit-config.yaml'
- './.pydevproject'
- './.valgrind-suppressions'
- './.valgrindrc'
- 'Dockerfile'
- 'Vagrantfile'
- 'Makefile'
# Remove some directories check
- '.vscode/**'
- '.github/ISSUE_TEMPLATE/**'
2023-08-22 19:06:17 -03:00
# Remove change on other workflows
- '.github/workflows/test_environment.yml'
2023-02-08 18:33:17 -04:00
workflow_dispatch :
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 :
2023-08-31 18:25:51 -03:00
runs-on : ubuntu-22.04
2023-08-18 14:47:52 -03:00
container : ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.1.0
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