taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit add61dc7c36a7fec7815ac3bd82b99beb5bc06f6
parent c963546ba67d97881176aed7256fc2857db8a646
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Mon, 10 Jun 2019 20:53:38 +0200

First changes of #5761.

Diffstat:
Mbuildbot/build-docs.sh | 6+++---
Mtaler-docbuild/Makefile | 16+++++++++-------
Mtaler-docbuild/invalidate.sh | 6+++---
3 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/buildbot/build-docs.sh b/buildbot/build-docs.sh @@ -2,7 +2,7 @@ set -eu -cd $HOME/deployment/taler-docbuild/ -./invalidate.sh +cd $HOME/stamps -make +./invalidate.sh +make all diff --git a/taler-docbuild/Makefile b/taler-docbuild/Makefile @@ -1,3 +1,5 @@ +BASE="${HOME}/deployment/taler-docbuild" + all: api-stamp all: backoffice-stamp all: bank-stamp exchange-stamp @@ -6,29 +8,29 @@ all: tutorials-stamp all: deployment-stamp tutorials-stamp: - ./update_tutorials.sh + ${BASE}/update_tutorials.sh touch $@ api-stamp: - ./update_api.sh + ${BASE}/update_api.sh touch $@ backoffice-stamp: - ./update_doc_backoffice.sh + ${BASE}/update_doc_backoffice.sh touch $@ bank-stamp: - ./update_doc_bank.sh + ${BASE}/update_doc_bank.sh touch $@ exchange-stamp: - ./update_doc_exchange.sh + ${BASE}/update_doc_exchange.sh touch $@ merchant-stamp: - ./update_doc_merchant.sh + ${BASE}/update_doc_merchant.sh touch $@ deployment-stamp: - ./update_onboarding.sh + ${BASE}/update_onboarding.sh touch $@ diff --git a/taler-docbuild/invalidate.sh b/taler-docbuild/invalidate.sh @@ -2,13 +2,13 @@ set -eu -components="merchant-frontend-examples merchant exchange backoffice api deployment" +components="bank merchant exchange deployment backoffice api merchant-frontend-examples" -for component in $components ; do +for component in $components ; do cd $HOME/$component git fetch if git status -sb | grep behind; then echo "invalidating $component" - rm -f $HOME/deployment/taler-docbuild/$component-stamp + rm -f $HOME/$component-stamp fi done