PX4-Autopilot/Tools/ci_build_all_runner.sh
2024-08-09 09:12:02 -07:00

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