This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from e83fc7d obs-build: when building for SLE 11.2 and 11.3, obs-build drops the (S)RPM build results in /usr/src/packages new 8dc17fc allow builds for build-main-test branch The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: bin/build-deb-package | 2 ++ bin/build-rpm-package | 2 ++ 2 files changed, 4 insertions(+) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit 8dc17fcf0931e9060bafe9c93aa0cc57f35fd998 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Feb 4 22:26:59 2015 +0100 allow builds for build-main-test branch --- bin/build-deb-package | 2 ++ bin/build-rpm-package | 2 ++ 2 files changed, 4 insertions(+) diff --git a/bin/build-deb-package b/bin/build-deb-package index efed4e3..a488db9 100755 --- a/bin/build-deb-package +++ b/bin/build-deb-package @@ -68,6 +68,8 @@ set_vars() { DATE="${DATE:-$(date +%Y%m%d)}" if [ "x$COMPONENT" = "x$COMPONENT_MAIN" ]; then CHECKOUT="${3:-build-main}" + elif [ "x$COMPONENT" = "x${COMPONENT_MAIN}-test" ]; then + CHECKOUT="${3:-build-main-test}" elif echo "$COMPONENT_RELEASES" | grep "$COMPONENT" >/dev/null; then CHECKOUT="${3:-build-$COMPONENT}" elif [ "x$COMPONENT" = "x$COMPONENT_NIGHTLY" ]; then diff --git a/bin/build-rpm-package b/bin/build-rpm-package index b91d2d1..b3ff360 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -72,6 +72,8 @@ set_vars() { DATE="${DATE:-$(date +%Y%m%d)}" if [ "x$COMPONENT" = "x$COMPONENT_MAIN" ]; then CHECKOUT="${3:-build-main}" + if [ "x$COMPONENT" = "x${COMPONENT_MAIN}-test" ]; then + CHECKOUT="${3:-build-main-test}" elif echo "$COMPONENT_RELEASES" | grep "$COMPONENT" >/dev/null; then CHECKOUT="${3:-build-$COMPONENT}" elif [ "x$COMPONENT" = "x$COMPONENT_NIGHTLY" ]; then -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git