Github user apiri commented on a diff in the pull request:
https://github.com/apache/nifi/pull/985#discussion_r78054879
--- Diff: .travis.yml ---
@@ -6,12 +21,22 @@ os:
jdk:
- oraclejdk8
+# Caches mvn repository in order to speed upbuilds
+cache:
+ directories:
+ - $HOME/.m2
+ - $HOME/.npm
+
# before_install aids in a couple workarounds for issues within the
Travis-CI environment
# 1. Workaround for buffer overflow issues with OpenJDK versions of java
as per https://github.com/travis-ci/travis-ci/issues/5227#issuecomment-165135711
# 2. Workaround for non-existent Maven repository as per:
https://github.com/travis-ci/travis-ci/issues/4629#issuecomment-131214465
before_install:
- sudo hostname "$(hostname | cut -c1-63)"
- sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/"
/etc/hosts | sudo tee /etc/hosts
- sed -i.bak -e
's|https://nexus.codehaus.org/snapshots/|https://oss.sonatype.org/content/repositories/codehaus-snapshots/|g'
~/.m2/settings.xml
+ - echo "MAVEN_OPTS='-Xmx2g -XX:+UseG1GC'" > ~/.mavenrc
+ - mvn -Pcontrib-check apache-rat:check checkstyle:check
--- End diff --
Hey @trixpan,
I am a bit confused as it seems to be redundant. contrib-check is a
profile which runs RAT and checkstyle. Am I overlooking something?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---