2022-10-30 16:34:06 +00:00
|
|
|
#!/bin/sh -e
|
2023-03-16 20:49:12 +00:00
|
|
|
# Description: check modified kernel configs
|
2022-10-30 16:34:06 +00:00
|
|
|
# Options: native
|
|
|
|
# Use 'native' because it requires running pmbootstrap.
|
2022-11-20 15:36:28 +00:00
|
|
|
# https://postmarketos.org/pmb-ci
|
2022-10-30 16:34:06 +00:00
|
|
|
|
|
|
|
if [ "$(id -u)" = 0 ]; then
|
|
|
|
set -x
|
2024-06-30 16:30:31 +00:00
|
|
|
export PMBOOTSTRAP_TAG=master
|
2022-10-30 16:34:06 +00:00
|
|
|
wget "https://gitlab.com/postmarketOS/ci-common/-/raw/master/install_pmbootstrap.sh"
|
|
|
|
sh ./install_pmbootstrap.sh
|
|
|
|
exec su "${TESTUSER:-pmos}" -c "sh -e $0"
|
|
|
|
fi
|
|
|
|
|
2023-03-16 20:49:12 +00:00
|
|
|
export PYTHONUNBUFFERED=1
|
2022-10-30 16:34:06 +00:00
|
|
|
|
2023-03-16 20:49:12 +00:00
|
|
|
.ci/lib/check_changed_kernels.py
|