commit 3e0aeeeb6bbef8d3fd7fc03d4f5f5d10b7609fd7 parent a6d004b9ec2a03a69d49f75753578c1003dca38a Author: Marcello Stanisci <stanisci.m@gmail.com> Date: Fri, 13 Sep 2019 20:15:43 +0200 skip unneeded builds Diffstat:
| M | bootstrap-auditorreporter | | | 8 | ++++++++ |
| M | bootstrap-reservetopper | | | 8 | ++++++++ |
2 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/bootstrap-auditorreporter b/bootstrap-auditorreporter @@ -100,3 +100,11 @@ ln -sf ../deployment/taler-build/invalidate.sh stamps/ if [[ ! -d "worker" ]]; then buildbot-worker create-worker $HOME/worker localhost:9989 "$ENVNAME-auditor-worker" "$ENVNAME-auditor-pass" fi + +# We fake all the stamps for those repositories that +# are not needed for the activity of this user. This +# way, taler-deployment-build will skip them. + +for stamp in auditor backoffice blog donations survey playground twister ; do + touch stamps/$stamp-stamp +done diff --git a/bootstrap-reservetopper b/bootstrap-reservetopper @@ -100,3 +100,11 @@ ln -sf ../deployment/taler-build/invalidate.sh stamps/ if [[ ! -d "worker" ]]; then buildbot-worker create-worker $HOME/worker localhost:9989 "$ENVNAME-topper-worker" "$ENVNAME-topper-pass" fi + +# We fake all the stamps for those repositories that +# are not needed for the activity of this user. This +# way, taler-deployment-build will skip them. + +for stamp in auditor backoffice blog donations survey playground twister ; do + touch stamps/$stamp-stamp +done