diff options
author | Luca Boccassi <bluca@debian.org> | 2024-02-22 11:07:24 +0100 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2024-02-28 02:08:57 +0100 |
commit | d6e98b3d1671c77a57c2a929fe1e6df219e142e9 (patch) | |
tree | 9000829deea28b8ff96ecf6865b28e391ebbabb1 /.semaphore | |
parent | semaphore: enable backports to get new dependencies (diff) | |
download | systemd-d6e98b3d1671c77a57c2a929fe1e6df219e142e9.tar.xz systemd-d6e98b3d1671c77a57c2a929fe1e6df219e142e9.zip |
semaphore: set upstream build profile and set default branch to debian/master
Leave TEST_UPSTREAM=1 for now in case we switch branches via the hook
Diffstat (limited to '.semaphore')
-rwxr-xr-x | .semaphore/semaphore-runner.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.semaphore/semaphore-runner.sh b/.semaphore/semaphore-runner.sh index 6ffbf12c55..1b0b29e73e 100755 --- a/.semaphore/semaphore-runner.sh +++ b/.semaphore/semaphore-runner.sh @@ -7,7 +7,7 @@ set -o pipefail # default to Debian testing DISTRO="${DISTRO:-debian}" RELEASE="${RELEASE:-bookworm}" -BRANCH="${BRANCH:-upstream-ci}" +BRANCH="${BRANCH:-debian/master}" ARCH="${ARCH:-amd64}" CONTAINER="${RELEASE}-${ARCH}" CACHE_DIR="${SEMAPHORE_CACHE_DIR:-/tmp}" @@ -104,7 +104,9 @@ EOF rm -rf "$ARTIFACTS_DIR" # autopkgtest exits with 2 for "some tests skipped", accept that sudo "$AUTOPKGTEST_DIR/runner/autopkgtest" --env DEB_BUILD_OPTIONS=noudeb \ - --env TEST_UPSTREAM=1 ../systemd_*.dsc \ + --env DEB_BUILD_PROFILES=pkg.systemd.upstream \ + --env TEST_UPSTREAM=1 \ + ../systemd_*.dsc \ -o "$ARTIFACTS_DIR" \ -- lxc -s "$CONTAINER" \ || [ $? -eq 2 ] |