From: Stefan Eissing Date: Fri, 29 Oct 2021 14:39:46 +0000 (+0000) Subject: * test mod_md, try new gopath first, subshell go install cd X-Git-Tag: 2.5.0-alpha2-ci-test-only~711 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=235928865abdd649bfa6bc54589a1015f62468e8;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index 7998affec84..9a7a3aec7c3 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=$?