taler-deployment

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

commit 8ef5283edc3c38abb05c25e76b3f8deb693af858
parent 9359fab818edbbe9eb921338929c3c5096aee3f5
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Wed,  1 Jun 2016 02:09:14 +0200

PATH in coverage, skeleton for blue-green switch

Diffstat:
Mtaler-build/coverage.sh | 1+
Ataler-build/switch_active.sh | 7+++++++
2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/taler-build/coverage.sh b/taler-build/coverage.sh @@ -1,6 +1,7 @@ #!/bin/sh # Run from 'exchange/' top-level directory to generate code coverage data. export CFLAGS="-g -O0" +export PATH=$HOME/local/bin:$PATH cd $HOME/exchange/ git pull ./bootstrap diff --git a/taler-build/switch_active.sh b/taler-build/switch_active.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# Build all Taler components (currently only the wallet build+test is +# not supported) for the non active party of blue-green, and switch to +# it whenever compilation and testing succeed. +# The script is not portable to system using different usernames and directories, +# respect to taler.net, for blue-green deployments