-
Notifications
You must be signed in to change notification settings - Fork 16
36 lines (34 loc) · 1.4 KB
/
sysid_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
name: SysID Pipeline Test
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 45
strategy:
fail-fast: false
matrix:
container:
- "px4io/px4-dev-simulation-focal:2020-11-18" # Gazebo 11
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v1
- name: submodule update
run: git submodule update --init --recursive
- name: Install python dependencies
run: make install-dependencies
- name: Run subsystem level tests on parametric model
run: Tools/parametric_model/test_parametric_model.sh
- name: Run multirotor_model estimation for system level test using resource ulog
run: make estimate-model model=quadrotor_model plot=False
- name: Run multirotor_model estimation for system level test using resource csv
run: make estimate-model model=quadrotor_model log=resources/quadrotor_model.csv plot=False
- name: Run fixedwing_longitudinalmodel estimation for system level test using resource csv
run: make estimate-model model=fixedwing_model log=resources/fixedwing_model.csv plot=False
- name: Run fixedwing singularity free model for system level test using resource csv
run: make estimate-model model=fixedwing_singularityfree_model log=resources/fixedwing_model.csv plot=False