2022-10-30 14:08:36 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
# Description: verify devices are documented in the wiki
|
|
|
|
# Options: native
|
|
|
|
# Run natively so we don't need to set up a chroot, python3 is the only dep.
|
2022-11-20 15:36:28 +00:00
|
|
|
# https://postmarketos.org/pmb-ci
|
2022-10-30 14:08:36 +00:00
|
|
|
|
|
|
|
if [ "$(id -u)" = 0 ]; then
|
|
|
|
set -x
|
|
|
|
apk -q add \
|
|
|
|
python3
|
|
|
|
exec su "${TESTUSER:-build}" -c "sh -e $0"
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -x
|
|
|
|
.ci/lib/check_devices_in_wiki.py --booting
|