summaryrefslogtreecommitdiff
path: root/test/travis_run_linux.sh
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2021-10-29 14:39:46 +0000
committerStefan Eissing <icing@apache.org>2021-10-29 14:39:46 +0000
commit235928865abdd649bfa6bc54589a1015f62468e8 (patch)
treec2662eeab14500954e29cb3bc16e0a90027acf84 /test/travis_run_linux.sh
parent197a5b6d32cf5d6b27b1e061e289c7806baa33bb (diff)
downloadhttpd-235928865abdd649bfa6bc54589a1015f62468e8.tar.gz
* 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 'test/travis_run_linux.sh')
-rwxr-xr-xtest/travis_run_linux.sh4
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=$?