summaryrefslogtreecommitdiff
path: root/test/travis_run_linux.sh
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2021-10-29 10:26:40 +0000
committerStefan Eissing <icing@apache.org>2021-10-29 10:26:40 +0000
commiteed172d8a2aac700eb02f1df4b2b7dcdd93d1dd5 (patch)
tree90f39d67c5ee1d9a5bccf8a80406076ca6c15da4 /test/travis_run_linux.sh
parent668e6394bd6910555758b4556879345724e9d96d (diff)
downloadhttpd-eed172d8a2aac700eb02f1df4b2b7dcdd93d1dd5.tar.gz
* adjust acceptable log errors fro http2 test suite on travis
* disable building of pebble for ACME tests as golang shows trouble git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894612 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/travis_run_linux.sh')
-rwxr-xr-xtest/travis_run_linux.sh16
1 files changed, 11 insertions, 5 deletions
diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh
index 685db80fb6..eb235ce582 100755
--- a/test/travis_run_linux.sh
+++ b/test/travis_run_linux.sh
@@ -169,11 +169,17 @@ if ! test -v SKIP_TESTING; then
# Run ACME tests.
# need the go based pebble as ACME test server
# which is a package on debian sid, but not on focal
- export GOPATH=${PREFIX}/gocode
- mkdir -p "${GOPATH}"
- go get -u github.com/letsencrypt/pebble/...
- cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./...
- export PATH="${PATH}:${GOPATH}/bin"
+ # FAILS on TRAVIS with
+ # package github.com/letsencrypt/pebble/cmd/pebble
+ # imports crypto/ed25519: unrecognized import path "crypto/ed25519" (import path does not begin with hostname)
+ #
+ # but works on a docker ubuntu-focal image. ???
+ # DISABLED
+ #export GOPATH=${PREFIX}/gocode
+ #mkdir -p "${GOPATH}"
+ #go get -u github.com/letsencrypt/pebble/...
+ #cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./...
+ #export PATH="${PATH}:${GOPATH}/bin"
py.test-3 test/modules/md
RV=$?