2021-02-10 19:52:04 -04:00
|
|
|
name: test unit tests and Python cleanliness
|
2020-09-02 06:01:42 -03:00
|
|
|
|
2020-12-15 13:02:54 -04:00
|
|
|
on: [push, pull_request, workflow_dispatch]
|
2020-09-02 06:01:42 -03: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-09-02 06:01:42 -03:00
|
|
|
|
|
|
|
jobs:
|
2020-11-12 15:42:51 -04:00
|
|
|
build:
|
2020-09-02 06:01:42 -03:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-08 10:29:03 -04:00
|
|
|
container:
|
|
|
|
image: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
|
|
|
options: --user 1001
|
2020-09-02 06:01:42 -03:00
|
|
|
strategy:
|
2020-11-12 15:42:51 -04:00
|
|
|
fail-fast: false # don't cancel if a job from the matrix fails
|
2020-09-02 06:01:42 -03:00
|
|
|
matrix:
|
2020-11-12 15:42:51 -04:00
|
|
|
toolchain: [
|
|
|
|
base, # GCC
|
|
|
|
clang,
|
2020-09-02 06:01:42 -03:00
|
|
|
]
|
|
|
|
config: [
|
2021-02-10 19:52:04 -04:00
|
|
|
unit-tests,
|
2021-02-08 10:29:03 -04:00
|
|
|
python-cleanliness,
|
2021-09-01 06:18:06 -03:00
|
|
|
sitl
|
2021-03-07 07:04:14 -04:00
|
|
|
# examples,
|
2020-09-02 06:01:42 -03:00
|
|
|
]
|
|
|
|
steps:
|
|
|
|
# git checkout the PR
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
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")
|
|
|
|
echo "::set-output name=timestamp::${NOW}"
|
|
|
|
- name: ccache cache files
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.ccache
|
2020-11-12 15:42:51 -04:00
|
|
|
key: ${{github.workflow}}-ccache-${{ matrix.toolchain }}-${{steps.ccache_cache_timestamp.outputs.timestamp}}
|
|
|
|
restore-keys: ${{github.workflow}}-ccache-${{ matrix.toolchain }}- # restore ccache from either previous build on this branch or on master
|
2020-09-02 06:01:42 -03:00
|
|
|
- name: setup ccache
|
|
|
|
run: |
|
2022-02-22 01:23:32 -04:00
|
|
|
. .github/workflows/ccache.env
|
2020-11-12 15:42:51 -04:00
|
|
|
- name: test ${{matrix.config}} ${{ matrix.toolchain }}
|
2020-09-02 06:01:42 -03:00
|
|
|
env:
|
|
|
|
CI_BUILD_TARGET: ${{matrix.config}}
|
2021-03-01 18:46:47 -04:00
|
|
|
shell: 'script -q -e -c "bash {0}"'
|
2020-09-02 06:01:42 -03:00
|
|
|
run: |
|
2021-06-28 09:08:22 -03:00
|
|
|
if [[ ${{ matrix.toolchain }} == "clang" ]]; then
|
2021-09-27 07:33:50 -03:00
|
|
|
export CC=clang
|
|
|
|
export CXX=clang++
|
2020-11-12 15:42:51 -04:00
|
|
|
fi
|
2020-09-02 06:01:42 -03:00
|
|
|
PATH="/github/home/.local/bin:$PATH"
|
2020-10-23 01:56:26 -03:00
|
|
|
Tools/scripts/build_ci.sh
|
|
|
|
|
|
|
|
- name: Archive buildlog artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
2021-02-08 01:27:36 -04:00
|
|
|
if: failure()
|
2020-10-23 01:56:26 -03:00
|
|
|
with:
|
2021-02-08 01:27:36 -04:00
|
|
|
name: fail-${{ matrix.toolchain }}-${{matrix.config}}
|
2020-10-23 01:56:26 -03:00
|
|
|
path: /tmp/buildlogs
|
|
|
|
retention-days: 14
|