taler-deployment

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

commit ec1042c9b735de431eebbc118e03285e63d8dfba
parent 03a6f1f4ad6006f220faf76e391eb3d26b0425e1
Author: ng0 <ng0@n0.is>
Date:   Fri, 11 Oct 2019 23:19:48 +0000

wallet jobs?

Diffstat:
Abuildbot/build-walletcore.sh | 12++++++++++++
Ataler-walletbuild/build_wallet-core.sh | 18++++++++++++++++++
2 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/buildbot/build-walletcore.sh b/buildbot/build-walletcore.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +set -eu + +cd $HOME/deployment +git clean -fdx +git fetch +branch=$(git rev-parse --abrev-ref --symbolic-full-name @{u} 2>/dev/null || echo head) +git reset --hard "$branch" + +cd $HOME/deployment/taler-walletbuild +./build_wallet-core.sh diff --git a/taler-walletbuild/build_wallet-core.sh b/taler-walletbuild/build_wallet-core.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +set -eu + +rm -rf $HOME/local +mkdir $HOME/local + +cd $HOME/wallet-core +git clean -fxd + +git fetch +branch=$(git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null || echo HEAD) +git reset --hard "$branch" + +./bootstrap +./configure --prefix=$HOME/local +make +make install