You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@omid.apache.org by fp...@apache.org on 2016/08/11 05:26:51 UTC

incubator-omid git commit: [OMID-11] Fix travis.yml to build apache incubator-omid

Repository: incubator-omid
Updated Branches:
  refs/heads/master 4266f293c -> 5cd5b8ff3


[OMID-11] Fix travis.yml to build apache incubator-omid

Also:
- Change email for feedback to dev@omid.incubator.apache.org
- Fix badge for travis in README.md
- Fix links in README.md to point to the apache omid website

This closes #5

Change-Id: I4ccf29e92da50c99d21315a86a75f23a53027aae


Project: http://git-wip-us.apache.org/repos/asf/incubator-omid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-omid/commit/5cd5b8ff
Tree: http://git-wip-us.apache.org/repos/asf/incubator-omid/tree/5cd5b8ff
Diff: http://git-wip-us.apache.org/repos/asf/incubator-omid/diff/5cd5b8ff

Branch: refs/heads/master
Commit: 5cd5b8ff3152014387c27acabcfc4f3f9861a44b
Parents: 4266f29
Author: Francisco Perez-Sorrosal <fp...@yahoo-inc.com>
Authored: Wed Aug 10 11:41:23 2016 -0700
Committer: Francisco Perez-Sorrosal <fp...@yahoo-inc.com>
Committed: Wed Aug 10 22:26:18 2016 -0700

----------------------------------------------------------------------
 .travis.yml | 42 +++++-------------------------------------
 README.md   | 14 +++++++-------
 2 files changed, 12 insertions(+), 44 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/5cd5b8ff/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index c6b9ddf..c50aa43 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,7 +3,7 @@ language: java
 notifications:
   email:
     recepients:
-      - omid-ci@yahoo-inc.com
+      - dev@omid.incubator.apache.org
   on_success: always
   on_failure: always
 
@@ -23,54 +23,22 @@ install: true
 before_script:
   # This is required to avoid failures of HBase minicluster related to Hadoop 1.x releases
   - umask 022
-  - git config --global user.email "omid-ci@yahoo-inc.com"
+  - git config --global user.email "dev@omid.incubator.apache.org"
   - git config --global user.name "Omid CI"
   # Install protobuf to genearte TSO client-server protocol in each compilation
   - cd ..
   - wget https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz
   - tar -xzvf protobuf-2.5.0.tar.gz
   - cd protobuf-2.5.0 && ./configure --prefix=/usr && make && sudo make install
-  - cd ../omid
+  - cd ../incubator-omid
 
 script:
   - if [ "${TRAVIS_PULL_REQUEST}" = "false" ] ; then
       git checkout master
       &&
-      mvn clean cobertura:cobertura -Phbase-0
-      &&
-      mkdir failedTests
-      &&
-      find -name testng-failed.xml -exec cp -vf "{}" failedTests/ \;
-      &&
-      [ ! -f failedTests/testng-failed.xml ]
-      &&
-      mvn coveralls:report -Phbase-0
-      &&
-      mvn -B clean release:prepare release:perform -Prelease_profile,hbase-0 --settings bintray-settings.xml ;
+      mvn clean cobertura:cobertura -Phbase-0 ;
     else
       git checkout -b tmp-build-branch
       &&
       mvn clean test -Phbase-0 ;
-    fi
-
-after_success:
-  - echo ******************************************************************************************
-  - echo Omid release/pull-request process finished successfully
-  - echo ******************************************************************************************
-
-after_failure:
-  - echo ******************************************************************************************
-  - echo Omid failed during the release/pull-request process
-  - echo ******************************************************************************************
-  - VERSION_SUFFIX=`date +%s`
-    VERSION=`mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -v '\[' | grep SNAPSHOT`
-    &&
-    git checkout -b "failed-build-$VERSION"
-    &&
-    git config core.autocrlf false
-    &&
-    git add -f */surefire-reports/*
-    &&
-    git commit --verbose -m"Surefile output"
-    &&
-    git push -f "https://${GH_TOKEN}@github.com/yahoo/omid.git" failed-build-$VERSION:failed-build-$VERSION-$TRAVIS_PULL_REQUEST-$VERSION_SUFFIX
\ No newline at end of file
+    fi
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/5cd5b8ff/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 17888a9..6380f51 100644
--- a/README.md
+++ b/README.md
@@ -1,20 +1,20 @@
 <img src="https://github.com/yahoo/omid/blob/master/doc/images/omid-logo.png" width="200">
 
-[ ![Build Status](https://travis-ci.org/yahoo/omid.svg?branch=master) ](https://travis-ci.org/yahoo/omid) 
-[ ![Coverage Status](https://coveralls.io/repos/yahoo/omid/badge.svg?branch=master&service=github) ](https://coveralls.io/github/yahoo/omid?branch=master) 
-[ ![Download](https://api.bintray.com/packages/yahoo/maven/omid/images/download.svg) ](https://bintray.com/yahoo/maven/omid/_latestVersion)
+[ ![Build Status](https://travis-ci.org/apache/incubator-omid.svg?branch=master) ](https://travis-ci.org/apache/incubator-omid) 
 
 The Omid project provides transactional support for HBase-based applications.
 
 # Quickstart
 
-Check the Omid [basic concepts](https://github.com/yahoo/omid/wiki/Getting-Started) or go directly
-to the [installation instructions](https://github.com/yahoo/omid/wiki/Installation).
+Check the Omid [basic concepts](http://omid.incubator.apache.org/) or go directly
+to the [quick start guide](http://omid.incubator.apache.org/quickstart.html).
 
-For a more detailed view of the system, check the [technical documentation](https://github.com/yahoo/omid/wiki/Technical-Documentation).
+For a more detailed view of the system, check the sections in the technical documentation [here](http://omid.incubator.apache.org/).
 
 # License
 
 Code licensed under the Apache License Version 2.0. See LICENSE file for terms.
 
-_Omid logo by Ignacio Prieto_
+-----------------------------------------------------------------------------------------------------------------------
+
+<sup>Omid logo by Ignacio Prieto</sup>