2020-11-12 13:13:36 -04:00
name : test chibios
2023-02-08 18:33:17 -04:00
on :
push :
paths-ignore :
# remove non chibios HAL
- 'libraries/AP_HAL_Linux/**'
- 'libraries/AP_HAL_ESP32/**'
- 'libraries/AP_HAL_SITL/**'
# remove non stm directories
- 'Tools/CHDK-Script/**'
- 'Tools/CodeStyle/**'
- 'Tools/completion/**'
- 'Tools/debug/**'
- 'Tools/environment_install/**'
- 'Tools/FilterTestTool/**'
- 'Tools/Frame_params/**'
- 'Tools/geotag/**'
- 'Tools/GIT_Test/**'
- 'Tools/gittools/**'
- 'Tools/Hello/**'
- 'Tools/LogAnalyzer/**'
- 'Tools/mavproxy_modules/**'
- 'Tools/Pozyx/**'
- 'Tools/PrintVersion.py'
- 'Tools/Replay/**'
- 'Tools/simulink/**'
- 'Tools/UDP_Proxy/**'
- 'Tools/vagrant/**'
- 'Tools/Vicon/**'
# Remove vehicles autotest we need support of test_build_option.py in the Tools/autotest directory
- 'Tools/autotest/antennatracker.py'
- 'Tools/autotest/arduplane.py'
- 'Tools/autotest/ardusub.py'
- 'Tools/autotest/balancebot.py'
- 'Tools/autotest/location.txt'
- 'Tools/autotest/quadplane.py'
- 'Tools/autotest/rover.py'
- 'Tools/autotest/sailboat.py'
- 'Tools/autotest/swarminit.txt'
# 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 chibios HAL
- 'libraries/AP_HAL_Linux/**'
- 'libraries/AP_HAL_ESP32/**'
- 'libraries/AP_HAL_SITL/**'
# remove non stm directories
- 'Tools/CHDK-Script/**'
- 'Tools/CodeStyle/**'
- 'Tools/completion/**'
- 'Tools/debug/**'
- 'Tools/environment_install/**'
- 'Tools/FilterTestTool/**'
- 'Tools/Frame_params/**'
- 'Tools/geotag/**'
- 'Tools/GIT_Test/**'
- 'Tools/gittools/**'
- 'Tools/Hello/**'
- 'Tools/LogAnalyzer/**'
- 'Tools/mavproxy_modules/**'
- 'Tools/Pozyx/**'
- 'Tools/PrintVersion.py'
- 'Tools/Replay/**'
- 'Tools/simulink/**'
- 'Tools/UDP_Proxy/**'
- 'Tools/vagrant/**'
- 'Tools/Vicon/**'
# Remove vehicles autotest we need support of test_build_option.py in the Tools/autotest directory
- 'Tools/autotest/antennatracker.py'
- 'Tools/autotest/arduplane.py'
- 'Tools/autotest/ardusub.py'
- 'Tools/autotest/autotest.py'
- 'Tools/autotest/balancebot.py'
- 'Tools/autotest/common.py'
- 'Tools/autotest/examples.py'
- 'Tools/autotest/quadplane.py'
- 'Tools/autotest/rover.py'
- 'Tools/autotest/sailboat.py'
- 'Tools/autotest/**.txt'
- 'Tools/autotest/logger_metadata/**'
- 'Tools/autotest/param_metadata/**'
# 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 :
2020-12-15 13:02:54 -04:00
2021-06-23 04:42:11 -03:00
concurrency :
group : ci-${{github.workflow}}-${{ github.ref }}
cancel-in-progress : true
2020-11-12 13:13:36 -04:00
jobs :
build :
2023-08-31 18:25:51 -03:00
runs-on : ubuntu-22.04
2023-11-21 17:27:07 -04:00
container : ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.1.3
2020-11-12 13:13:36 -04:00
strategy :
fail-fast : false # don't cancel if a job from the matrix fails
matrix :
config : [
stm32f7,
stm32h7,
fmuv2-plane,
periph-build,
2020-11-23 06:44:05 -04:00
iofirmware,
CubeOrange-bootloader,
2022-10-04 00:10:42 -03:00
fmuv3-bootloader,
2021-07-20 04:39:53 -03:00
revo-bootloader,
2021-09-01 06:18:06 -03:00
stm32h7-debug,
fmuv3,
revo-mini,
MatekF405-Wing,
2022-08-07 01:10:28 -03:00
CubeOrange-ODID,
2023-04-12 01:38:32 -03:00
CubeRedPrimary-bootloader,
2022-07-19 09:22:05 -03:00
configure-all,
2022-09-03 02:20:58 -03:00
build-options-defaults-test,
2023-12-26 03:49:49 -04:00
signing,
CubeOrange-PPP,
2024-01-06 21:59:13 -04:00
CubeOrange-SOHW,
2024-01-12 21:55:12 -04:00
Pixhawk6X-PPPGW,
2020-11-12 13:13:36 -04:00
]
2020-11-23 06:44:05 -04:00
toolchain : [
2023-04-22 08:05:39 -03:00
chibios,
2021-09-01 12:11:45 -03:00
#chibios-clang,
2020-11-23 06:44:05 -04:00
]
2023-04-22 08:05:39 -03:00
gcc : [ 10 ]
2020-11-23 06:44:05 -04:00
exclude :
2021-07-27 13:20:11 -03:00
- gcc : 10
2020-11-23 06:44:05 -04:00
toolchain : chibios-clang
2020-11-12 13:13:36 -04:00
steps :
# git checkout the PR
2023-11-21 17:29:41 -04:00
- uses : actions/checkout@v4
2020-11-12 13:13:36 -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-12 13:13:36 -04:00
- name : ccache cache files
2022-12-09 07:47:48 -04:00
uses : actions/cache@v3
2020-11-12 13:13:36 -04:00
with :
path : ~/.ccache
2020-11-23 06:44:05 -04:00
key : ${{github.workflow}}-ccache-${{matrix.config}}-${{ matrix.toolchain }}-${{ matrix.gcc }}-${{steps.ccache_cache_timestamp.outputs.timestamp}}
restore-keys : ${{github.workflow}}-ccache-${{matrix.config}}-${{ matrix.toolchain }}-${{ matrix.gcc }} # restore ccache from either previous build on this branch or on master
2020-11-12 13:13:36 -04:00
- name : setup ccache
run : |
2022-02-22 01:23:32 -04:00
. .github/workflows/ccache.env
2020-11-23 06:44:05 -04:00
- name : test ${{matrix.config}} ${{ matrix.toolchain }} gcc-${{matrix.gcc}}
2020-11-12 13:13:36 -04:00
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-06-28 09:08:22 -03:00
if [[ ${{ matrix.toolchain }} == "chibios-clang" ]]; then
2021-09-27 07:33:50 -03:00
export CC=clang
export CXX=clang++
2020-11-23 06:44:05 -04:00
fi
2020-11-12 13:13:36 -04:00
PATH="/usr/lib/ccache:/opt/gcc-arm-none-eabi-${{matrix.gcc}}/bin:$PATH"
PATH="/github/home/.local/bin:$PATH"
Tools/scripts/build_ci.sh
2020-11-23 06:44:05 -04:00
ccache -s
ccache -z