TAJO-890: Redirect stdout of maven test to /dev/null in Travis CI script. Closes #47
Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/48c6d1a3 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/48c6d1a3 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/48c6d1a3 Branch: refs/heads/window_function Commit: 48c6d1a38fa28cef14bf610328004fc68a734b83 Parents: e52742d Author: Hyunsik Choi <[email protected]> Authored: Wed Jun 25 11:37:32 2014 +0900 Committer: Hyunsik Choi <[email protected]> Committed: Wed Jun 25 16:50:18 2014 +0900 ---------------------------------------------------------------------- .travis.yml | 2 +- CHANGES | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/48c6d1a3/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index ae49b23..92bf1b1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,4 +36,4 @@ notifications: install: ./dev-support/travis-install-dependencies.sh -script: mvn clean install -Phcatalog-0.12.0 -q | grep -v 'INFO:' +script: mvn clean install -Phcatalog-0.12.0 -q 1> /dev/null http://git-wip-us.apache.org/repos/asf/tajo/blob/48c6d1a3/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 97c8db5..b740008 100644 --- a/CHANGES +++ b/CHANGES @@ -156,6 +156,9 @@ Release 0.9.0 - unreleased TASKS + TAJO-890: Redirect stdout of maven test to /dev/null in Travis CI + script. (hyunsik) + TAJO-887: Eliminate HiveQL support feature. (hyunsik) TAJO-886: Add IRC page to community section in site. (hyunsik)
