taler-deployment

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

commit 5d32413e0708d825c927cbe2356a86ea3c7b9578
parent 060d27e872d49177d802450e0b425d34b5a9c28b
Author: Florian Dold <florian.dold@gmail.com>
Date:   Mon, 18 Apr 2016 16:50:38 +0200

concept for buildbot rebuild scripts

Diffstat:
Ataler-build/Makefile | 20++++++++++++++++++++
Ataler-build/README | 2++
Ataler-build/invalidate.sh | 15+++++++++++++++
3 files changed, 37 insertions(+), 0 deletions(-)

diff --git a/taler-build/Makefile b/taler-build/Makefile @@ -0,0 +1,20 @@ + +all: exchange-stamp bank-stamp merchant-stamp + +exchange-stamp: gnunet-stamp + ~/deplyoment/update_exchange.sh + touch $@ + +gnunet-stamp: + ~/deplyoment/update_exchange.sh + touch $@ + +bank-stamp: exchange-stamp + ~/deplyoment/update_bank.sh + touch $@ + + +merchant-stamp: exchange-stamp + ~/deplyoment/update_bank.sh + touch $@ + diff --git a/taler-build/README b/taler-build/README @@ -0,0 +1,2 @@ +Makefile for all taler components, using one timestamp +file in this folder to represent each component. diff --git a/taler-build/invalidate.sh b/taler-build/invalidate.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Invalidate build stamps + + +cd ~/merchant +git fetch +if git status -sb | grep behind; then + rm merchant-stamp +fi + +# TODO: also do it for the other repos +# TODO: also do it for SVN + +