From 22b8446efb8c8f7f4d1438e7460e3b8fa1634615 Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Thu, 15 Oct 2015 14:32:52 -0700 Subject: [PATCH] Get precompiled Goose from GithHub. Rather than fetching from bitbucket and building. Bitbucket is often down, and building from scratch is slow. Github is sometimes down, but at least now we have our eggs in one basket. --- tests/boulder-start.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/boulder-start.sh b/tests/boulder-start.sh index 530f9c598..051c832f2 100755 --- a/tests/boulder-start.sh +++ b/tests/boulder-start.sh @@ -32,11 +32,10 @@ export PATH="$GOPATH/bin:$PATH" go get -d github.com/letsencrypt/boulder/... cd $GOPATH/src/github.com/letsencrypt/boulder # goose is needed for ./test/create_db.sh -if ! go get bitbucket.org/liamstask/goose/cmd/goose ; then - echo Problems installing goose... perhaps rm -rf \$GOPATH \("$GOPATH"\) - echo and try again... - exit 1 -fi +wget https://github.com/jsha/boulder-tools/raw/master/goose.gz && \ + mkdir $GOPATH/bin && \ + zcat goose.gz > $GOPATH/bin/goose && \ + chmod +x $GOPATH/bin/goose ./test/create_db.sh ./start.py & # Hopefully start.py bootstraps before integration test is started...