5 # default to Debian testing
6 DISTRO
=${DISTRO:-debian}
7 RELEASE
=${RELEASE:-bullseye}
8 BRANCH
=${BRANCH:-upstream-ci}
10 CONTAINER
=${RELEASE}-${ARCH}
11 CACHE_DIR
=${SEMAPHORE_CACHE_DIR:=/tmp}
12 AUTOPKGTEST_DIR
="${CACHE_DIR}/autopkgtest"
13 # semaphore cannot expose these, but useful for interactive/local runs
14 ARTIFACTS_DIR
=/tmp
/artifacts
15 PHASES
=(${@:-SETUP RUN})
16 UBUNTU_RELEASE
="$(lsb_release -cs)"
19 # Create autopkgtest LXC image; this sometimes fails with "Unable to fetch
20 # GPG key from keyserver", so retry a few times with different keyservers.
21 for keyserver
in "" "keys.gnupg.net" "keys.openpgp.org" "keyserver.ubuntu.com"; do
22 for retry
in {1.
.5}; do
23 sudo lxc-create
-n $CONTAINER -t download
-- -d $DISTRO -r $RELEASE -a $ARCH --server us.images.linuxcontainers.org
${keyserver:+--keyserver "$keyserver"} && break 2
24 sleep $
((retry
*retry
))
28 # unconfine the container, otherwise some tests fail
29 echo 'lxc.apparmor.profile = unconfined' | sudo
tee -a /var
/lib
/lxc
/$CONTAINER/config
31 sudo lxc-start
-n $CONTAINER
33 # enable source repositories so that apt-get build-dep works
34 sudo lxc-attach
-n $CONTAINER -- sh
-ex <<EOF
35 sed 's/^deb/deb-src/' /etc/apt/sources.list >> /etc/apt/sources.list.d/sources.list
37 while [ -z "\$(ip route list 0/0)" ]; do sleep 1; done
38 apt-get -q --allow-releaseinfo-change update
39 apt-get -y dist-upgrade
40 apt-get install -y eatmydata
41 # The following four are needed as long as these deps are not covered by Debian's own packaging
42 apt-get install -y fdisk tree libfdisk-dev libp11-kit-dev libssl-dev libpwquality-dev
43 apt-get purge --auto-remove -y unattended-upgrades
44 systemctl unmask systemd-networkd
45 systemctl enable systemd-networkd
47 sudo lxc-stop
-n $CONTAINER
50 for phase
in "${PHASES[@]}"; do
53 # remove semaphore repos, some of them don't work and cause error messages
54 sudo
rm -f /etc
/apt
/sources.list.d
/*
56 # enable backports for latest LXC
57 echo "deb http://archive.ubuntu.com/ubuntu $UBUNTU_RELEASE-backports main restricted universe multiverse" | sudo
tee -a /etc
/apt
/sources.list.d
/backports.list
58 sudo apt-get
-q update
59 sudo apt-get
install -y -t "$UBUNTU_RELEASE-backports" lxc
60 sudo apt-get
install -y python3-debian git dpkg-dev fakeroot
62 [ -d $AUTOPKGTEST_DIR ] || git clone
--quiet --depth=1 https
://salsa.debian.org
/ci-team
/autopkgtest.git
"$AUTOPKGTEST_DIR"
67 # add current debian/ packaging
68 git fetch
--depth=1 https
://salsa.debian.org
/systemd-team
/systemd.git
$BRANCH
69 git checkout FETCH_HEAD debian
72 UPSTREAM_VER
=$
(git describe |
sed 's/^v//;s/-/./g')
73 cat << EOF > debian/changelog.new
74 systemd (${UPSTREAM_VER}.0) UNRELEASED; urgency=low
76 * Automatic build for upstream test
78 -- systemd test <pkg-systemd-maintainers@lists.alioth.debian.org> $(date -R)
81 cat debian
/changelog
>> debian
/changelog.new
82 mv debian
/changelog.new debian
/changelog
86 # disable autopkgtests which are not for upstream
87 sed -i '/# NOUPSTREAM/ q' debian
/tests
/control
88 # enable more unit tests
89 sed -i '/^CONFFLAGS =/ s/=/= --werror -Dtests=unsafe -Dsplit-usr=true -Dslow-tests=true -Dman=true /' debian
/rules
91 echo '1.0' > debian
/source
/format
93 # build source package
94 dpkg-buildpackage
-S -I -I$
(basename "$CACHE_DIR") -d -us -uc -nc
96 # now build the package and run the tests
97 rm -rf "$ARTIFACTS_DIR"
98 # autopkgtest exits with 2 for "some tests skipped", accept that
99 $AUTOPKGTEST_DIR/runner
/autopkgtest
--env DEB_BUILD_OPTIONS
=noudeb \
100 --env TEST_UPSTREAM
=1 ..
/systemd_
*.dsc \
101 -o "$ARTIFACTS_DIR" \
102 -- lxc
-s $CONTAINER \
106 echo >&2 "Unknown phase '$phase'"