mirror of
https://github.com/apache/nifi.git
synced 2025-02-07 10:38:33 +00:00
f0811ca45a
- Addressing access controls for the Controller resource. - Addressing access controls for RAW site to site clients. - Addressing access controls for downloading content (from provenance and queue). - Addressing access controls for accessing queues. - Addressing access controls for cluster endpoints. - Addressing access controls for counter endpoints. - Removing redundant authorization calls. NIFI-2044: - Requiring revision when creating components. - Requiring component creation over POST requests. NIFI-1901 - Continuing to restore access control tests. - Converting access control tests to itegration tests. - Restoring contrib check to travis build. - This closes #567
18 lines
786 B
YAML
18 lines
786 B
YAML
language: java
|
|
|
|
os:
|
|
- linux
|
|
|
|
jdk:
|
|
- oraclejdk8
|
|
|
|
# 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
|
|
|
|
script: mvn clean install -Pcontrib-check
|