Skip to content
Snippets Groups Projects
generate-gitlab-ci-targets.sh 190 B
Newer Older
Nico's avatar
Nico committed
#!/bin/bash

set -eu
mydir=$(readlink -f "$(dirname "$0")/..")

make -s -C "$mydir/gluon" GLUON_SITEDIR="$mydir" list-targets | while read target; do
	cat <<EOF
- TARGET: ${target}
Nico's avatar
Nico committed
EOF
done