mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
13 lines
287 B
Bash
Executable File
13 lines
287 B
Bash
Executable File
#!/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
|
|
set -e
|
|
|
|
targets=$1
|
|
for target in ${targets//,/ }
|
|
do
|
|
echo "::group::Building: [${target}]"
|
|
make $target
|
|
echo "::endgroup::"
|
|
done
|