Skip to content

Commit c763f09

Browse files
dgrove-ossrabbah
authored andcommitted
tlp: remove incubator references (#14)
1 parent d6f3025 commit c763f09

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ deploy:
3636
on:
3737
tags: true
3838
all_branches: true
39-
repo: apache/incubator-openwhisk-runtime-rust
39+
repo: apache/openwhisk-runtime-rust
4040
- provider: script
4141
skip_cleanup: true
4242
script: "./tools/travis/publish.sh openwhisk rust1.34 nightly"
4343
on:
4444
branch: master
45-
repo: apache/incubator-openwhisk-runtime-rust
45+
repo: apache/openwhisk-runtime-rust
4646
env:
4747
global:
4848
- secure: 0Zk7istlUWhzCAMQvNSYEewgQmOF4uexJH/yh+35sifvX60tM2Hpq2ieZCgvTNgLhHPZmEJnRxldAgWGnwax4ROQyzJR+Qbu481KatwPEw5j+PpBP1rFUA5evYJC7gCG1INffliji0yd6WyoUMlwasMEyeyaqfRmdw3W4wMUXF/z1ya6cgAR9HxKegiOxtp4qjeFGk5PcyfxY5PoWroLeE3gpr5mjb7KoW6UzkkSlhJEsI9iMHyoUTln9ZTsLmBiGCmWC1cp6vaKq/K0t1p4bFm5Hg0vJMbb230jcdP9NyvLJJd9UX2eH0G/ER+QzkSM94OQwhQjTzPppC6YAluxUg5ZYr+Ik5ASHXc4WJXag4MRIrur24d60YI0iwodZe05c8ZA/Ksj41RscrbMBv3tIxDalJtY8DNfdfSL3qP3vZEFPyyAIs9jpUm36nY+VYlW0rP2AiEQNcv7rNNGCLqKVQnlbVR4ccCYbQovcjghzpkuL2A2zFqD4XScU2uj4bJF8HxB/LQCYrSXYUUh11+PE05idTH9X4+JE03Yal2qoX2Tn+a5HO3mkwSEjJ+M8QTuiB1kPLn7CnfPYJNsC28ZFP4HpfhpygWfAIFQmTQoqDGi6q4zi81LcYFeWnz+0wE+XqqoB6C4OwsTA6gM+bTR67mpibOPLSQ2paIRJdl+Gnk=

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
# limitations under the License.
1717
#
1818
-->
19-
# incubator-openwhisk-runtime-rust
19+
# openwhisk-runtime-rust
2020

2121
Work in Progress... It will be awesome!
2222

2323
[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
24-
[![Build Status](https://travis-ci.org/apache/incubator-openwhisk-runtime-rust.svg?branch=master)](https://travis-ci.org/apache/incubator-openwhisk-runtime-rust)
24+
[![Build Status](https://travis-ci.org/apache/openwhisk-runtime-rust.svg?branch=master)](https://travis-ci.org/apache/openwhisk-runtime-rust)
2525

rust1.34/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
# limitations under the License.
1616
#
1717
FROM golang:1.11 as builder
18-
ENV PROXY_SOURCE=https://github.com/apache/incubator-openwhisk-runtime-go/archive/golang1.11@1.13.0-incubating.tar.gz
18+
ENV PROXY_SOURCE=https://github.com/apache/openwhisk-runtime-go/archive/golang1.11@1.13.0-incubating.tar.gz
1919
RUN curl -L "$PROXY_SOURCE" | tar xzf - \
2020
&& mkdir -p src/github.com/apache \
21-
&& mv incubator-openwhisk-runtime-go-golang1.11-1.13.0-incubating \
21+
&& mv openwhisk-runtime-go-golang1.11-1.13.0-incubating \
2222
src/github.com/apache/incubator-openwhisk-runtime-go \
2323
&& cd src/github.com/apache/incubator-openwhisk-runtime-go/main \
2424
&& CGO_ENABLED=0 go build -o /bin/proxy

tools/travis/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ set -ex
2323
SCRIPTDIR=$(cd $(dirname "$0") && pwd)
2424
ROOTDIR="$SCRIPTDIR/../.."
2525
WHISKDIR="$ROOTDIR/../openwhisk"
26-
UTILDIR="$ROOTDIR/../incubator-openwhisk-utilities"
26+
UTILDIR="$ROOTDIR/../openwhisk-utilities"
2727

2828
export OPENWHISK_HOME=$WHISKDIR
2929

tools/travis/scan.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ set -ex
2222

2323
SCRIPTDIR=$(cd $(dirname "$0") && pwd)
2424
ROOTDIR="$SCRIPTDIR/../.."
25-
UTILDIR="$ROOTDIR/../incubator-openwhisk-utilities"
25+
UTILDIR="$ROOTDIR/../openwhisk-utilities"
2626

2727
# run scancode using the ASF Release configuration
2828
pushd $UTILDIR

tools/travis/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ HOMEDIR="$SCRIPTDIR/../../../"
2626

2727
# clone OpenWhisk utilities repo. in order to run scanCode
2828
cd $HOMEDIR
29-
git clone --depth=1 https://github.com/apache/incubator-openwhisk-utilities.git
29+
git clone --depth=1 https://github.com/apache/openwhisk-utilities.git
3030

3131
# clone main openwhisk repo. for testing purposes
32-
git clone --depth=1 https://github.com/apache/incubator-openwhisk.git openwhisk
32+
git clone --depth=1 https://github.com/apache/openwhisk.git openwhisk
3333
cd openwhisk
3434
./tools/travis/setup.sh

0 commit comments

Comments
 (0)