forked from PX4/PX4-SITL_gazebo-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (85 loc) · 3.18 KB
/
firmware_build_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Firmware Build and SITL Tests
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
Firmware-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
model:
- "iris"
- "standard_vtol"
container:
image: px4io/px4-dev-simulation-focal:2021-05-31
options: --privileged --ulimit core=-1 --security-opt seccomp=unconfined
steps:
- name: Checkout Firmware main
uses: actions/[email protected]
with:
repository: PX4/Firmware
ref: main
path: Firmware
fetch-depth: 0
submodules: recurvise
- name: Checkout matching branch on PX4/Firmware if possible
run: |
git checkout ${{github.head_ref}} || echo "Firmware branch: ${{github.head_ref}} not found, using main instead"
git submodule update --init --recursive
working-directory: Firmware
- name: Configure Firmware to include current sitl_gazebo version
working-directory: Firmware/Tools/sitl_gazebo
run: |
git fetch origin pull/${{github.event.pull_request.number}}/head:${{github.head_ref}} || echo "Couldn't find the feature branch of the pull request, using default branch"
git checkout ${{github.head_ref}}
- name: Download MAVSDK
working-directory: Firmware
run: wget "https://github.com/mavlink/MAVSDK/releases/download/v$(cat test/mavsdk_tests/MAVSDK_VERSION)/libmavsdk-dev_$(cat test/mavsdk_tests/MAVSDK_VERSION)_ubuntu20.04_amd64.deb"
- name: Install MAVSDK
working-directory: Firmware
run: dpkg -i "libmavsdk-dev_$(cat test/mavsdk_tests/MAVSDK_VERSION)_ubuntu20.04_amd64.deb"
- name: Prepare ccache timestamp
id: ccache_cache_timestamp
shell: cmake -P {0}
run: |
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC)
message("::set-output name=timestamp::${current_date}")
- name: ccache cache files
uses: actions/cache@v2
with:
path: ~/.ccache
key: sitl_tests-${{matrix.config.build_type}}-ccache-${{steps.ccache_cache_timestamp.outputs.timestamp}}
restore-keys: sitl_tests-${{matrix.config.build_type}}-ccache-
- name: setup ccache
run: |
mkdir -p ~/.ccache
echo "base_dir = ${GITHUB_WORKSPACE}" > ~/.ccache/ccache.conf
echo "compression = true" >> ~/.ccache/ccache.conf
echo "compression_level = 6" >> ~/.ccache/ccache.conf
echo "max_size = 400M" >> ~/.ccache/ccache.conf
ccache -s
ccache -z
- name: Build Firmware
working-directory: Firmware
env:
DONT_RUN: 1
GIT_SUBMODULES_ARE_EVIL: 1
run: make px4_sitl_default gazebo
- name: ccache post-run px4/firmware
run: ccache -s
- name: Build MAVSDK tests
working-directory: Firmware
env:
DONT_RUN: 1
GIT_SUBMODULES_ARE_EVIL: 1
run: make px4_sitl_default gazebo mavsdk_tests
- name: ccache post-run mavsdk_tests
run: ccache -s
- name: Run SITL tests
working-directory: Firmware
run: test/mavsdk_tests/mavsdk_test_runner.py --speed-factor 20 --abort-early --model ${{matrix.model}} test/mavsdk_tests/configs/sitl.json