Repository: incubator-gearpump Updated Branches: refs/heads/master 23fa19c7c -> 9bb9ca5d8
fix GEARPUMP-108 enable travis CI for Gearpump's apache repository Author: huafengw <[email protected]> Closes #9 from huafengw/fix_GEARPUMP-108. Project: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/commit/9bb9ca5d Tree: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/tree/9bb9ca5d Diff: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/diff/9bb9ca5d Branch: refs/heads/master Commit: 9bb9ca5d8e580c83102ca6814a8c82a16c4fb780 Parents: 23fa19c Author: huafengw <[email protected]> Authored: Thu May 5 09:21:16 2016 +0800 Committer: manuzhang <[email protected]> Committed: Thu May 5 09:21:16 2016 +0800 ---------------------------------------------------------------------- .travis.yml | 6 +++--- README.md | 14 +++++++------- codecov.yml | 11 +++++++++++ integrationtest/README.md | 2 +- integrationtest/autorun/README.md | 2 +- integrationtest/autorun/autorun.sh | 2 +- 6 files changed, 24 insertions(+), 13 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/9bb9ca5d/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 2e5317e..ce66aa5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ script: - echo "TRAVIS_TAG" $TRAVIS_TAG - echo "repo" $TRAVIS_REPO_SLUG - set -o pipefail; skipLogs="Resolving |Compiling |Done updating|Updating |scoverage|coverage-report"; - if [[ $TRAVIS_PULL_REQUEST != "false" || $TRAVIS_REPO_SLUG != "gearpump/gearpump" ]]; + if [[ $TRAVIS_PULL_REQUEST != "false" || $TRAVIS_REPO_SLUG != "apache/incubator-gearpump" ]]; then sbt -jvm-opts project/travis/jvmopts clean scalastyle test:scalastyle it:scalastyle unidoc coverage +test | grep -v -E "$skipLogs"; elif [[ $TRAVIS_BRANCH == "master" ]]; then sbt -jvm-opts project/travis/jvmopts clean +publish | grep -v -E "$skipLogs"; sbt -jvm-opts project/travis/jvmopts scalastyle test:scalastyle it:scalastyle unidoc coverage +test | grep -v -E "$skipLogs"; @@ -33,7 +33,7 @@ cache: git: depth: 1 after_success: -- if [[ $TRAVIS_PULL_REQUEST != "false" || $TRAVIS_REPO_SLUG != "gearpump/gearpump" || $TRAVIS_BRANCH == "master" ]]; +- if [[ $TRAVIS_PULL_REQUEST != "false" || $TRAVIS_REPO_SLUG != "apache/incubator-gearpump" || $TRAVIS_BRANCH == "master" ]]; then bash <(curl -s https://codecov.io/bash); elif [[ $TRAVIS_TAG != "" ]]; then set -o pipefail; openssl aes-256-cbc -K $encrypted_3d8d53d5fdbf_key -iv $encrypted_3d8d53d5fdbf_iv -in secring.asc.enc -out secring.asc -d; sbt +publishSigned sonatypeReleaseAll | grep -v -E "Resolving "; @@ -46,7 +46,7 @@ deploy: file_glob: true file: output/target/gearpump-*.zip on: - repo: gearpump/gearpump + repo: apache/incubator-gearpump tags: true all_branches: true install: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/9bb9ca5d/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 17f0a0f..41048dd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -## Gearpump [](http://www.gearpump.io/download.html) [](https://github.com/gearpump/gearpump/blob/master/LICENSE) [](https://travis-ci.org/gearpump/gearpump?branch=master) [](https://codecov.io/github/gearpump/gearpump?branch=master) +## Gearpump [](http://www.gearpump.io/download.html) [](https://github.com/apache/incubator-gearpump/blob/master/LICENSE) [](https://travis-ci.org/apache/incubator-gearpump?branch=master) [](https://codecov.io/github/apache/incubator-gearpump?branch=master) Online Demo Site: http://demo.gearpump.io/ @@ -7,7 +7,7 @@ Online Demo Site: http://demo.gearpump.io/ Gearpump is a lightweight real-time big data streaming engine. It is inspired by recent advances in the [Akka](https://github.com/akka/akka) framework and a desire to improve on existing streaming frameworks. - + The name Gearpump is a reference to the engineering term "gear pump", which is a super simple pump that consists of only two gears, but is very powerful at streaming water. @@ -15,11 +15,11 @@ The name Gearpump is a reference to the engineering term "gear pump", which is a We model streaming within the Akka actor hierarchy. - + Per initial benchmarks we are able to process near 18 million messages/second (100 bytes per message) with a 8ms latency on a 4-node cluster. - + For steps to reproduce the performance test, please check [Performance benchmark](http://www.gearpump.io/releases/latest/performance-report.html). @@ -32,14 +32,14 @@ For steps to reproduce the performance test, please check [Performance benchmark * Explore the [Maven dependencies](http://www.gearpump.io/releases/latest/maven-setting.html) * Explore the [Document site](http://gearpump.io) * Explore the [User List](https://groups.google.com/forum/#!forum/gearpump-user) -* Report an [issue](https://github.com/gearpump/gearpump/issues) +* Report an [issue](https://issues.apache.org/jira/browse/GEARPUMP) ## How to Build 1). Clone the Gearpump repository ```bash - git clone https://github.com/gearpump/gearpump.git + git clone https://github.com/apache/incubator-gearpump.git cd gearpump ``` @@ -107,7 +107,7 @@ Please use the google user list if possible. For things that are not OK to be sh ## License Gearpump itself is licensed under the [Apache License (2.0)](http://www.apache.org/licenses/LICENSE-2.0). -For library it used, please see [LICENSE](https://github.com/gearpump/gearpump/blob/master/LICENSE). +For library it used, please see [LICENSE](https://github.com/apache/incubator-gearpump/blob/master/LICENSE). ## Acknowledgement http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/9bb9ca5d/codecov.yml ---------------------------------------------------------------------- diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000..28744ff --- /dev/null +++ b/codecov.yml @@ -0,0 +1,11 @@ +comment: + layout: header, changes, diff, sunburst +coverage: + ignore: + - examples/.* + - experiments/.* + - integrationtest/.* + status: + patch: true + project: + default: {} http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/9bb9ca5d/integrationtest/README.md ---------------------------------------------------------------------- diff --git a/integrationtest/README.md b/integrationtest/README.md index 4d85b00..53befc0 100644 --- a/integrationtest/README.md +++ b/integrationtest/README.md @@ -26,7 +26,7 @@ The integration test framework use docker to simulate a real cluster. The test s ### Step to Run Tests 1. Checkout Gearpump project - `git clone https://github.com/gearpump/gearpump.git` + `git clone https://github.com/apache/incubator-gearpump.git` 2. Build Gearpump project `sbt assembly pack` 3. Run Integration test http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/9bb9ca5d/integrationtest/autorun/README.md ---------------------------------------------------------------------- diff --git a/integrationtest/autorun/README.md b/integrationtest/autorun/README.md index 7bb42c5..4668fa5 100644 --- a/integrationtest/autorun/README.md +++ b/integrationtest/autorun/README.md @@ -1,7 +1,7 @@ ## Getting Started This package provides the facility to do continuous integration. Assume you already know how to run -integration test manually. If you don't know, Please refer [the instruction](https://github.com/gearpump/gearpump/blob/master/integrationtest/README.md) to setup your environment first. The +integration test manually. If you don't know, Please refer [the instruction](https://github.com/apache/incubator-gearpump/blob/master/integrationtest/README.md) to setup your environment first. The integration test framework requires Docker. To take a test drive, please run: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/9bb9ca5d/integrationtest/autorun/autorun.sh ---------------------------------------------------------------------- diff --git a/integrationtest/autorun/autorun.sh b/integrationtest/autorun/autorun.sh index 4963995..b63e10f 100644 --- a/integrationtest/autorun/autorun.sh +++ b/integrationtest/autorun/autorun.sh @@ -5,7 +5,7 @@ RECIPIENTS_FILE="recipients.txt" CHECK_INTERVAL="1m" -GIT_REPO="https://github.com/gearpump/gearpump.git" +GIT_REPO="https://github.com/apache/incubator-gearpump.git" # Read recipients from file if [ ! -f $RECIPIENTS_FILE ]; then
