diff options
author | Stefan Eissing <icing@apache.org> | 2021-10-29 16:39:46 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2021-10-29 16:39:46 +0200 |
commit | 235928865abdd649bfa6bc54589a1015f62468e8 (patch) | |
tree | c2662eeab14500954e29cb3bc16e0a90027acf84 /test/travis_run_linux.sh | |
parent | * testsuite mod_md: trying explicit GOROOT instead of travis golang-1.11(rea... (diff) | |
download | apache2-235928865abdd649bfa6bc54589a1015f62468e8.tar.xz apache2-235928865abdd649bfa6bc54589a1015f62468e8.zip |
* test mod_md, try new gopath first, subshell go install cd
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894617 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rwxr-xr-x | test/travis_run_linux.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index 7998affec8..9a7a3aec7c 100755 --- a/test/travis_run_linux.sh +++ b/test/travis_run_linux.sh @@ -177,9 +177,9 @@ if ! test -v SKIP_TESTING; then export GOROOT=/usr/lib/go-1.14 export GOPATH=${PREFIX}/gocode mkdir -p "${GOPATH}" - export PATH="${PATH}:${GOROOT}/bin:${GOPATH}/bin" + export PATH="${GOROOT}/bin:${GOPATH}/bin:${PATH}" go get -u github.com/letsencrypt/pebble/... - cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./... + (cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./...) py.test-3 test/modules/md RV=$? |