ci: run make on external script

This commit is contained in:
Ramon Roche
2024-08-09 08:26:53 -07:00
parent 166bf22cb7
commit fa8c4ff7c9
2 changed files with 10 additions and 5 deletions
+9
View File
@@ -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