You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by sr...@apache.org on 2015/12/06 17:34:40 UTC

[1/4] storm git commit: only show relevant tool versions for install step;

Repository: storm
Updated Branches:
  refs/heads/master 79a2a2a58 -> 10b33a61b


only show relevant tool versions for install step;


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/49d46be8
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/49d46be8
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/49d46be8

Branch: refs/heads/master
Commit: 49d46be837a6a0d164c09313db5291fdd995c2e2
Parents: ce2d49b
Author: Chuck Burgess <cb...@progressrail.com>
Authored: Thu Dec 3 11:22:33 2015 -0600
Committer: Chuck Burgess <cb...@progressrail.com>
Committed: Fri Dec 4 08:14:14 2015 -0600

----------------------------------------------------------------------
 dev-tools/travis/travis-install.sh | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/49d46be8/dev-tools/travis/travis-install.sh
----------------------------------------------------------------------
diff --git a/dev-tools/travis/travis-install.sh b/dev-tools/travis/travis-install.sh
index 4cbebb1..c85e23c 100755
--- a/dev-tools/travis/travis-install.sh
+++ b/dev-tools/travis/travis-install.sh
@@ -11,16 +11,8 @@
 #  See the License for the specific language governing permissions and
 #  limitations under the License.
 
-PYTHON_VERSION_TO_FILE=`python -V > /tmp/python_version 2>&1`
-PYTHON_VERSION=`cat /tmp/python_version`
-RUBY_VERSION=`ruby -v`
-NODEJS_VERSION=`node -v`
-MVN_VERSION=`mvn -v`
-
-echo "Python version : $PYTHON_VERSION"
-echo "Ruby version : $RUBY_VERSION"
-echo "NodeJs version : $NODEJS_VERSION"
-echo "mvn version : $MVN_VERSION"
+echo "Python version :  " `python -V 2>&1`
+echo "Maven version  :  " `mvn -v`
 
 STORM_SRC_ROOT_DIR=$1
 


[3/4] storm git commit: RAT checks already happen in install step, thus here they are dead code;

Posted by sr...@apache.org.
RAT checks already happen in install step, thus here they are dead code;


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/929458ae
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/929458ae
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/929458ae

Branch: refs/heads/master
Commit: 929458ae55e3aa18ed9cec6ae7ff72fbd75ffcac
Parents: 9e490da
Author: Chuck Burgess <cb...@progressrail.com>
Authored: Thu Dec 3 11:23:55 2015 -0600
Committer: Chuck Burgess <cb...@progressrail.com>
Committed: Fri Dec 4 08:14:15 2015 -0600

----------------------------------------------------------------------
 dev-tools/travis/travis-script.sh | 7 -------
 1 file changed, 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/929458ae/dev-tools/travis/travis-script.sh
----------------------------------------------------------------------
diff --git a/dev-tools/travis/travis-script.sh b/dev-tools/travis/travis-script.sh
index 503ba74..a461042 100755
--- a/dev-tools/travis/travis-script.sh
+++ b/dev-tools/travis/travis-script.sh
@@ -25,7 +25,6 @@ cd ${STORM_SRC_ROOT_DIR}
 # We should be concerned that Travis CI could be very slow because it uses VM
 export STORM_TEST_TIMEOUT_MS=150000
 
-# We now lean on Travis CI's implicit behavior, ```mvn clean install -DskipTests``` before running script
 mvn --batch-mode test -fae -Pnative -pl $2
 BUILD_RET_VAL=$?
 
@@ -35,10 +34,4 @@ do
   python ${TRAVIS_SCRIPT_DIR}/print-errors-from-test-reports.py "${dir}"
 done
 
-echo "Looking for unapproved licenses"
-for rat in `find . -name rat.txt`;
-do
-  python ${TRAVIS_SCRIPT_DIR}/ratprint.py "${rat}"
-done
-
 exit ${BUILD_RET_VAL}


[2/4] storm git commit: simplify tool version echoes;

Posted by sr...@apache.org.
simplify tool version echoes;


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/9e490da7
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/9e490da7
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/9e490da7

Branch: refs/heads/master
Commit: 9e490da70b3f1bd76c02718b6cc1bad45d33244d
Parents: 49d46be
Author: Chuck Burgess <cb...@progressrail.com>
Authored: Thu Dec 3 11:22:59 2015 -0600
Committer: Chuck Burgess <cb...@progressrail.com>
Committed: Fri Dec 4 08:14:15 2015 -0600

----------------------------------------------------------------------
 dev-tools/travis/travis-script.sh | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/9e490da7/dev-tools/travis/travis-script.sh
----------------------------------------------------------------------
diff --git a/dev-tools/travis/travis-script.sh b/dev-tools/travis/travis-script.sh
index a302e23..503ba74 100755
--- a/dev-tools/travis/travis-script.sh
+++ b/dev-tools/travis/travis-script.sh
@@ -11,16 +11,10 @@
 #  See the License for the specific language governing permissions and
 #  limitations under the License.
 
-PYTHON_VERSION_TO_FILE=`python -V > /tmp/python_version 2>&1`
-PYTHON_VERSION=`cat /tmp/python_version`
-RUBY_VERSION=`ruby -v`
-NODEJS_VERSION=`node -v`
-MVN_VERSION=`mvn -v`
-
-echo "Python version : $PYTHON_VERSION"
-echo "Ruby version : $RUBY_VERSION"
-echo "NodeJs version : $NODEJS_VERSION"
-echo "mvn version : $MVN_VERSION"
+echo "Python version :  " `python -V 2>&1`
+echo "Ruby version   :  " `ruby -v`
+echo "NodeJs version :  " `node -v`
+echo "Maven version  :  " `mvn -v`
 
 STORM_SRC_ROOT_DIR=$1
 


[4/4] storm git commit: Merge branch 'travisImprov' of https://github.com/ashnazg/storm into STORM-1365

Posted by sr...@apache.org.
Merge branch 'travisImprov' of https://github.com/ashnazg/storm into STORM-1365


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/10b33a61
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/10b33a61
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/10b33a61

Branch: refs/heads/master
Commit: 10b33a61b727bca43859e53819161f48c1af7226
Parents: 79a2a2a 929458a
Author: Sriharsha Chintalapani <ha...@hortonworks.com>
Authored: Sun Dec 6 08:23:48 2015 -0800
Committer: Sriharsha Chintalapani <ha...@hortonworks.com>
Committed: Sun Dec 6 08:23:48 2015 -0800

----------------------------------------------------------------------
 dev-tools/travis/travis-install.sh | 12 ++----------
 dev-tools/travis/travis-script.sh  | 21 ++++-----------------
 2 files changed, 6 insertions(+), 27 deletions(-)
----------------------------------------------------------------------