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

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


The following commit(s) were added to refs/heads/master by this push:
     new c763f09  tlp: remove incubator references (#14)
c763f09 is described below

commit c763f09d6bf4b7060eb3846b06d03014392c2309
Author: David Grove <[email protected]>
AuthorDate: Fri Aug 23 10:11:58 2019 -0400

    tlp: remove incubator references (#14)
---
 .travis.yml           | 4 ++--
 README.md             | 4 ++--
 rust1.34/Dockerfile   | 4 ++--
 tools/travis/build.sh | 2 +-
 tools/travis/scan.sh  | 2 +-
 tools/travis/setup.sh | 4 ++--
 6 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index de8df2a..86c9d27 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -36,13 +36,13 @@ deploy:
   on:
     tags: true
     all_branches: true
-    repo: apache/incubator-openwhisk-runtime-rust
+    repo: apache/openwhisk-runtime-rust
 - provider: script
   skip_cleanup: true
   script: "./tools/travis/publish.sh openwhisk rust1.34 nightly"
   on:
     branch: master
-    repo: apache/incubator-openwhisk-runtime-rust
+    repo: apache/openwhisk-runtime-rust
 env:
   global:
   - secure: 
0Zk7istlUWhzCAMQvNSYEewgQmOF4uexJH/yh+35sifvX60tM2Hpq2ieZCgvTNgLhHPZmEJnRxldAgWGnwax4ROQyzJR+Qbu481KatwPEw5j+PpBP1rFUA5evYJC7gCG1INffliji0yd6WyoUMlwasMEyeyaqfRmdw3W4wMUXF/z1ya6cgAR9HxKegiOxtp4qjeFGk5PcyfxY5PoWroLeE3gpr5mjb7KoW6UzkkSlhJEsI9iMHyoUTln9ZTsLmBiGCmWC1cp6vaKq/K0t1p4bFm5Hg0vJMbb230jcdP9NyvLJJd9UX2eH0G/ER+QzkSM94OQwhQjTzPppC6YAluxUg5ZYr+Ik5ASHXc4WJXag4MRIrur24d60YI0iwodZe05c8ZA/Ksj41RscrbMBv3tIxDalJtY8DNfdfSL3qP3vZEFPyyAIs9jpUm36nY+VYlW0rP2AiEQNcv7rNNGCLqKVQnlbVR4ccCY
 [...]
diff --git a/README.md b/README.md
index 85fbd22..56635c9 100644
--- a/README.md
+++ b/README.md
@@ -16,10 +16,10 @@
 # limitations under the License.
 #
 -->
-# incubator-openwhisk-runtime-rust
+# openwhisk-runtime-rust
 
 Work in Progress... It will be awesome!
 
 
[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
-[![Build 
Status](https://travis-ci.org/apache/incubator-openwhisk-runtime-rust.svg?branch=master)](https://travis-ci.org/apache/incubator-openwhisk-runtime-rust)
+[![Build 
Status](https://travis-ci.org/apache/openwhisk-runtime-rust.svg?branch=master)](https://travis-ci.org/apache/openwhisk-runtime-rust)
 
diff --git a/rust1.34/Dockerfile b/rust1.34/Dockerfile
index d9eae1d..7a15785 100644
--- a/rust1.34/Dockerfile
+++ b/rust1.34/Dockerfile
@@ -15,10 +15,10 @@
 # limitations under the License.
 #
 FROM golang:1.11 as builder
-ENV 
PROXY_SOURCE=https://github.com/apache/incubator-openwhisk-runtime-go/archive/[email protected]
+ENV 
PROXY_SOURCE=https://github.com/apache/openwhisk-runtime-go/archive/[email protected]
 RUN curl -L "$PROXY_SOURCE" | tar xzf - \
   && mkdir -p src/github.com/apache \
-  && mv incubator-openwhisk-runtime-go-golang1.11-1.13.0-incubating \
+  && mv 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
diff --git a/tools/travis/build.sh b/tools/travis/build.sh
index e3aa931..8ee3c2b 100755
--- a/tools/travis/build.sh
+++ b/tools/travis/build.sh
@@ -23,7 +23,7 @@ set -ex
 SCRIPTDIR=$(cd $(dirname "$0") && pwd)
 ROOTDIR="$SCRIPTDIR/../.."
 WHISKDIR="$ROOTDIR/../openwhisk"
-UTILDIR="$ROOTDIR/../incubator-openwhisk-utilities"
+UTILDIR="$ROOTDIR/../openwhisk-utilities"
 
 export OPENWHISK_HOME=$WHISKDIR
 
diff --git a/tools/travis/scan.sh b/tools/travis/scan.sh
index 58acec2..5242b68 100755
--- a/tools/travis/scan.sh
+++ b/tools/travis/scan.sh
@@ -22,7 +22,7 @@ set -ex
 
 SCRIPTDIR=$(cd $(dirname "$0") && pwd)
 ROOTDIR="$SCRIPTDIR/../.."
-UTILDIR="$ROOTDIR/../incubator-openwhisk-utilities"
+UTILDIR="$ROOTDIR/../openwhisk-utilities"
 
 # run scancode using the ASF Release configuration
 pushd $UTILDIR
diff --git a/tools/travis/setup.sh b/tools/travis/setup.sh
index 84b3b33..184bc50 100755
--- a/tools/travis/setup.sh
+++ b/tools/travis/setup.sh
@@ -26,9 +26,9 @@ HOMEDIR="$SCRIPTDIR/../../../"
 
 # clone OpenWhisk utilities repo. in order to run scanCode
 cd $HOMEDIR
-git clone --depth=1 https://github.com/apache/incubator-openwhisk-utilities.git
+git clone --depth=1 https://github.com/apache/openwhisk-utilities.git
 
 # clone main openwhisk repo. for testing purposes
-git clone --depth=1 https://github.com/apache/incubator-openwhisk.git openwhisk
+git clone --depth=1 https://github.com/apache/openwhisk.git openwhisk
 cd openwhisk
 ./tools/travis/setup.sh

Reply via email to