Github user srdo commented on a diff in the pull request:
https://github.com/apache/storm/pull/2733#discussion_r197857597
--- Diff: dev-tools/travis/travis-script.sh ---
@@ -31,7 +31,14 @@ else
# Travis only has 3GB of memory, lets use 1GB for build, and 1.5GB for
forked JVMs
export MAVEN_OPTS="-Xmx1024m"
- mvn --batch-mode test -fae -Pnative,all-tests '-P!include-shaded-deps'
-Prat -pl "$2"
+ TEST_MODULES=$2
+
+ if [ "$TRAVIS_JDK_VERSION" == "oraclejdk10" ] && [ "$TEST_MODULES" ==
"'!storm-client,!storm-server,!storm-core'" ]
+ then
+ TEST_MODULES =
'!storm-client,!storm-server,!storm-core,!external/storm-cassandra,!external/storm-hive'
--- End diff --
Could you give an example what this would look like? Googling "travis enum"
didn't pop up anything.
---