2022-10-30 15:48:16 +00:00
|
|
|
#!/bin/sh -e
|
2023-01-26 07:40:14 +00:00
|
|
|
# Copyright 2023 Oliver Smith
|
2022-10-30 15:48:16 +00:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Description: check pkgver/pkgrel bumps, amount of changed pkgs etc
|
|
|
|
# Options: native
|
|
|
|
# Use 'native' because it requires git commit history.
|
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
|
|
|
|
# In .gitlab-ci.yml currently .ci/pytest.sh runs before this and
|
|
|
|
# already downloads and runs install_pmbootstrap.sh.
|
|
|
|
if ! [ -e install_pmbootstrap.sh ]; then
|
|
|
|
wget "https://gitlab.com/postmarketOS/ci-common/-/raw/master/install_pmbootstrap.sh"
|
|
|
|
sh ./install_pmbootstrap.sh
|
|
|
|
fi
|
|
|
|
exec su "${TESTUSER:-pmos}" -c "sh -e $0"
|
|
|
|
fi
|
|
|
|
|
|
|
|
.ci/lib/check_changed_aports_versions.py
|