From 2fcda17896470257185ae8445b175f7e6d6a009f Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Wed, 1 Dec 2021 11:29:26 +0900 Subject: [PATCH] buildbot: Allow builds from testing and unstable branches Buildbot refuses to build from testing and unstable branches, however there are scenarios (e.g. testing/unstable apt repositories) where that might be useful. This commit modifies buildbot so that it will build packages from testing and unstable branches. --- buildbot.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildbot.sh b/buildbot.sh index 4cd131a..5c03e76 100755 --- a/buildbot.sh +++ b/buildbot.sh @@ -113,6 +113,8 @@ handle_commit_message() { buildable_branches=( "master" "stable" + "testing" + "unstable" ) result=0 err=0 -- 2.47.3