Skip to content
Snippets Groups Projects

CI: Extend integration testing

Merged Caleb Connolly requested to merge caleb/moar-testing into master
Compare and Show latest version
1 file
+ 12
7
Compare changes
  • Side-by-side
  • Inline
+ 12
7
#!/bin/sh -e
echo "\$@:" "$@"
if [ "$(id -u)" = 0 ]; then
exec su "${TESTUSER:-build}" -c "sh -e $0"
apk add cmd:dig
exec su "${TESTUSER:-build}" -c "sh -ec '$0 $*'"
fi
test="$(basename "$0")"
args="$*"
set +x
cat /etc/resolv.conf
dig -x gitlab.postmarketos.org
dig -x google.com
set -x
echo "args: $args"
echo "\$@: $@"
test="$(basename "$0")"
usage() {
echo "Usage: $test $1"
@@ -16,7 +21,7 @@ usage() {
}
pmbootstrap() {
printf "\033[0;32m$ pmbootstrap $*\033[0m\n"
printf "\033[0;32m\$ pmbootstrap %s\033[0m\n" "$*"
./pmbootstrap.py --details-to-stdout -y "$@"
}
@@ -115,5 +120,5 @@ bump_autobuild() {
# Run the test
echo "Running $test $*"
eval $test "$@"
"$test" "$@"
echo "Test $test passed!"
Loading