You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ms...@apache.org on 2020/08/06 08:55:23 UTC

[openwhisk-runtime-go] branch master updated: Upgrade golang version to 1.13 in travis (#127)

This is an automated email from the ASF dual-hosted git repository.

msciabarra pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-go.git


The following commit(s) were added to refs/heads/master by this push:
     new bd69e63  Upgrade golang version to 1.13 in travis (#127)
bd69e63 is described below

commit bd69e633f352643abdd1ece17c7c4873c7dd391d
Author: jiangpch <ji...@navercorp.com>
AuthorDate: Thu Aug 6 16:55:12 2020 +0800

    Upgrade golang version to 1.13 in travis (#127)
    
    * Upgrade golang version to 1.13 in travis
    
    * Add GO111MODULE=off environment
    
    Co-authored-by: jiang.pengcheng <ji...@navercorp.com>
---
 .travis.yml       | 2 +-
 common/gobuild.py | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 1438f62..d51fdc7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,7 +18,7 @@
 sudo: required
 language: go
 go:
-  - "1.12.9"
+  - "1.13.14"
 services:
   - docker
 notifications:
diff --git a/common/gobuild.py b/common/gobuild.py
index f86f7cb..ceb7c19 100755
--- a/common/gobuild.py
+++ b/common/gobuild.py
@@ -56,7 +56,8 @@ def build(parent, source_dir, target):
     env = {
       "PATH": os.environ["PATH"],
       "GOPATH": os.path.abspath(parent),
-      "GOCACHE": "/tmp"
+      "GOCACHE": "/tmp",
+      "GO111MODULE": "off"
     }
     if os.path.isdir("%s/main" % source_dir):
         source_dir += "/main"