You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by co...@apache.org on 2017/07/27 11:45:52 UTC

ranger git commit: RANGER-1706: Add travis.yml for validating Ranger, with skipping one kafka and one ugsync test.

Repository: ranger
Updated Branches:
  refs/heads/master edd0bd6a6 -> a89ddecf0


RANGER-1706: Add travis.yml for validating Ranger, with skipping one kafka and one ugsync test.

Signed-off-by: Colm O hEigeartaigh <co...@apache.org>


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

Branch: refs/heads/master
Commit: a89ddecf05b9b22c6b5faf2f2f7acd12cbb1f7ca
Parents: edd0bd6
Author: Zsombor Gegesy <gz...@gmail.com>
Authored: Tue Jul 18 21:18:06 2017 +0200
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Thu Jul 27 12:37:50 2017 +0100

----------------------------------------------------------------------
 .travis.yml | 39 +++++++++++++++++++++++++++++++++++++++
 pom.xml     |  2 +-
 2 files changed, 40 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ranger/blob/a89ddecf/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..b38b892
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,39 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+sudo: false
+language: java
+cache:
+  directories:
+  - $HOME/.m2
+jdk:
+  - oraclejdk8
+env:
+  - KEY=default VALUE=default
+# Environment to testing with different versions, disabled because ranger is not compatible
+#  - KEY=hadoop.version VALUE=2.8.0
+
+before_install:
+  - export MAVEN_OPTS="-Xmx1200M -XX:MaxPermSize=768m -Xms512m"
+
+install:
+  - mvn package -D$KEY=$VALUE -DskipTests -Dmaven.javadoc.skip=true -B -V
+
+# KafkaRangerAuthorizerGSSTest is a failing test, TestLdapUserGroup needs too much memory for travis
+script:
+  - mvn test -D$KEY=$VALUE -Dmaven.javadoc.skip=true -B -V -pl !plugin-kafka,!ugsync
+  - mvn test -D$KEY=$VALUE -Dmaven.javadoc.skip=true -B -V -pl plugin-kafka -Dtest="*,!KafkaRangerAuthorizerGSSTest"
+  - mvn test -D$KEY=$VALUE -Dmaven.javadoc.skip=true -B -V -pl ugsync -Dtest="*,!TestLdapUserGroup"

http://git-wip-us.apache.org/repos/asf/ranger/blob/a89ddecf/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7ae0217..01005b7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -377,7 +377,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-surefire-plugin</artifactId>
-                    <version>2.18.1</version>
+                    <version>2.20</version>
                     <configuration>
                         <argLine>-Djava.library.path="${hadoop.library.path}${path.separator}${java.library.path}"</argLine>
                         <skipTests>${skipTests}</skipTests>