]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* test: mod_md, trying to build pebble by explicitly installing golang-1.14
authorStefan Eissing <icing@apache.org>
Fri, 29 Oct 2021 10:40:30 +0000 (10:40 +0000)
committerStefan Eissing <icing@apache.org>
Fri, 29 Oct 2021 10:40:30 +0000 (10:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894613 13f79535-47bb-0310-9956-ffa450edef68

.travis.yml
test/travis_run_linux.sh

index 15f024d6125eefeef6d1ad81bd7e8aaf8b19d8a0..0d65dc85a74b63a263944798eff7a75df75c91da 100644 (file)
@@ -330,7 +330,7 @@ jobs:
             - nghttp2-client
             - python3-cryptography
             - python3-requests
-            - golang
+            - golang-1.14
     # -------------------------------------------------------------------------
     - name: Linux Ubuntu, APR 1.7.0, APR-util 1.6.1, LDAP
       env: APR_VERSION=1.7.0
index eb235ce582e445d7cfd014ae36793056cba8378c..950bddac3f6cc20fe1ea5281418077c082eed11f 100755 (executable)
@@ -174,12 +174,11 @@ 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. ???
-        # 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"
+        export GOPATH=${PREFIX}/gocode
+        mkdir -p "${GOPATH}"
+        export PATH="${PATH}:/usr/lib/go-1.14/bin:${GOPATH}/bin"
+        go get -u github.com/letsencrypt/pebble/...
+        cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./...
 
         py.test-3 test/modules/md
         RV=$?