Github Actions don't allow the ecl analsysi script to fail the build

This commit is contained in:
Daniel Agar 2020-06-22 14:40:43 -04:00
parent 1d43ca5bea
commit e1161e3f6f
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ jobs:
- name: ecl EKF analysis
if: always()
run: ./Tools/ecl_ekf/process_logdata_ekf.py ~/.ros/log/*/*.ulg
run: ./Tools/ecl_ekf/process_logdata_ekf.py ~/.ros/log/*/*.ulg || true
- name: Upload logs to flight review
if: always()

View File

@ -84,7 +84,7 @@ jobs:
- name: ecl EKF analysis
if: always()
run: ./Tools/ecl_ekf/process_logdata_ekf.py ~/.ros/log/*/*.ulg
run: ./Tools/ecl_ekf/process_logdata_ekf.py ~/.ros/log/*/*.ulg || true
- name: Upload logs to flight review
if: always()