2022-10-30 15:48:16 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
# Description: build modified packages for this architecture
|
|
|
|
# Options: native slow
|
2022-11-20 15:36:28 +00:00
|
|
|
# https://postmarketos.org/pmb-ci
|
2022-10-30 15:48:16 +00:00
|
|
|
|
|
|
|
if [ "$(id -u)" = 0 ]; then
|
|
|
|
set -x
|
|
|
|
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
|
|
|
|
|
|
|
|
export PYTHONUNBUFFERED=1
|
|
|
|
|
|
|
|
# Get the architecture from the symlink we are running
|
|
|
|
arch="$(echo "$0" | cut -d '-' -f 2 | cut -d '.' -f 1)"
|
|
|
|
|
|
|
|
set -x
|
|
|
|
.ci/lib/build_changed_aports.py "$arch"
|