3207b9d8c5
Check that the container registry in user repositories is enabled, and issue a more descriptive error around it. Lifted from Tracker. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3681>
18 lines
419 B
Bash
Executable file
18 lines
419 B
Bash
Executable file
#!/bin/bash
|
|
OUTFILE=$1
|
|
NAME=$2
|
|
MESSAGE=$3
|
|
|
|
cat >$OUTFILE <<EOF
|
|
<?xml version='1.0' encoding='utf-8'?>
|
|
<testsuites tests="1" errors="0" failures="1">
|
|
<testsuite name="repo-sanity" tests="1" errors="0" failures="1">
|
|
<testcase name="$NAME" classname="repo-sanity">
|
|
<failure message="$MESSAGE"/>
|
|
</testcase>
|
|
</testsuite>
|
|
</testsuites>
|
|
EOF
|
|
|
|
# Also echo the message in stdout for good measure
|
|
echo $MESSAGE
|