mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-21 23:50:36 +08:00
ci: run make on external script
This commit is contained in:
@@ -60,11 +60,7 @@ jobs:
|
||||
|
||||
- name: build target group
|
||||
run: |
|
||||
matrix_targets=${{matrix.targets}}
|
||||
for target in ${matrix_targets//,/ }
|
||||
do
|
||||
make $target
|
||||
done
|
||||
./Tools/ci_build_all_runner.sh ${{matrix.targets}}
|
||||
|
||||
- name: ccache post-run
|
||||
run: ccache -s
|
||||
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
# This script is meant to be used by the build_all.yml workflow in a github runner
|
||||
# Please only modify if you know what you are doing
|
||||
|
||||
targets=$1
|
||||
for target in ${targets//,/ }
|
||||
do
|
||||
make $target
|
||||
done
|
||||
Reference in New Issue
Block a user