summaryrefslogtreecommitdiff
path: root/test/travis_run_linux.sh
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2021-10-29 10:49:48 +0000
committerStefan Eissing <icing@apache.org>2021-10-29 10:49:48 +0000
commit197a5b6d32cf5d6b27b1e061e289c7806baa33bb (patch)
tree29143d3e2d0389b757cd6b79548c0052b9c5efa1 /test/travis_run_linux.sh
parentcc94d4d0125fb3629f7464d78fa5091abbd35f27 (diff)
downloadhttpd-197a5b6d32cf5d6b27b1e061e289c7806baa33bb.tar.gz
* testsuite mod_md: trying explicit GOROOT instead of travis golang-1.11(really?) provided one
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894614 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/travis_run_linux.sh')
-rwxr-xr-xtest/travis_run_linux.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh
index 950bddac3f..7998affec8 100755
--- a/test/travis_run_linux.sh
+++ b/test/travis_run_linux.sh
@@ -174,9 +174,10 @@ if ! test -v SKIP_TESTING; then
# imports crypto/ed25519: unrecognized import path "crypto/ed25519" (import path does not begin with hostname)
#
# but works on a docker ubuntu-focal image. ???
+ export GOROOT=/usr/lib/go-1.14
export GOPATH=${PREFIX}/gocode
mkdir -p "${GOPATH}"
- export PATH="${PATH}:/usr/lib/go-1.14/bin:${GOPATH}/bin"
+ export PATH="${PATH}:${GOROOT}/bin:${GOPATH}/bin"
go get -u github.com/letsencrypt/pebble/...
cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./...