You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2021/10/29 10:40:30 UTC

svn commit: r1894613 - in /httpd/httpd/trunk: .travis.yml test/travis_run_linux.sh

Author: icing
Date: Fri Oct 29 10:40:30 2021
New Revision: 1894613

URL: http://svn.apache.org/viewvc?rev=1894613&view=rev
Log:
 * test: mod_md, trying to build pebble by explicitly installing golang-1.14

Modified:
    httpd/httpd/trunk/.travis.yml
    httpd/httpd/trunk/test/travis_run_linux.sh

Modified: httpd/httpd/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/.travis.yml?rev=1894613&r1=1894612&r2=1894613&view=diff
==============================================================================
--- httpd/httpd/trunk/.travis.yml (original)
+++ httpd/httpd/trunk/.travis.yml Fri Oct 29 10:40:30 2021
@@ -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

Modified: httpd/httpd/trunk/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_run_linux.sh?rev=1894613&r1=1894612&r2=1894613&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Fri Oct 29 10:40:30 2021
@@ -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=$?