You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ak...@apache.org on 2019/05/21 06:57:36 UTC

[incubator-openwhisk-runtime-php] branch master updated: Adapt to current actionloop release tag. (#58)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 421a9db  Adapt to current actionloop release tag. (#58)
421a9db is described below

commit 421a9dbe5aa4b29917448336f2bc29b9d8503a3c
Author: falkzoll <fa...@de.ibm.com>
AuthorDate: Tue May 21 08:57:31 2019 +0200

    Adapt to current actionloop release tag. (#58)
    
    The release tag of the actionloop (https://github.com/apache/incubator-openwhisk-runtime-go) is set to 'golang1.11@1.13.0-incubating'. The code was looking for '1.11@v1.13.0-incubating'. This causes the travis build to fail.
    Adjusted the Dockerfile to use the new value to unblock the travis build.
---
 core/php7.3Action/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/php7.3Action/Dockerfile b/core/php7.3Action/Dockerfile
index 8477326..6131ba7 100644
--- a/core/php7.3Action/Dockerfile
+++ b/core/php7.3Action/Dockerfile
@@ -16,10 +16,10 @@
 #
 
 FROM golang:1.11 as builder
-ENV PROXY_SOURCE=https://github.com/apache/incubator-openwhisk-runtime-go/archive/1.11@1.13.0-incubating.tar.gz
+ENV PROXY_SOURCE=https://github.com/apache/incubator-openwhisk-runtime-go/archive/golang1.11@1.13.0-incubating.tar.gz
 RUN curl -L "$PROXY_SOURCE" | tar xzf - \
   && mkdir -p src/github.com/apache \
-  && mv incubator-openwhisk-runtime-go-1.11-1.13.0-incubating \
+  && mv incubator-openwhisk-runtime-go-golang1.11-1.13.0-incubating \
      src/github.com/apache/incubator-openwhisk-runtime-go \
   && cd src/github.com/apache/incubator-openwhisk-runtime-go/main \
   && CGO_ENABLED=0 go build -o /bin/proxy