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
4 files
+ 60
36
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 14
3
#!/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
set +x
cat /etc/resolv.conf
dig -x gitlab.postmarketos.org
dig -x google.com
set -x
test="$(basename "$0")"
usage() {
@@ -12,7 +21,7 @@ usage() {
}
pmbootstrap() {
echo "+ pmbootstrap $*"
printf "\033[0;32m\$ pmbootstrap %s\033[0m\n" "$*"
./pmbootstrap.py --details-to-stdout -y "$@"
}
@@ -110,4 +119,6 @@ bump_autobuild() {
}
# Run the test
$test "$@"
echo "Running $test $*"
"$test" "$@"
echo "Test $test passed!"
Loading