You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fluo.apache.org by ct...@apache.org on 2018/03/07 20:19:32 UTC

[fluo] branch master updated: Use matrix build for Travis CI testing (#1022)

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo.git


The following commit(s) were added to refs/heads/master by this push:
     new b3d2e80  Use matrix build for Travis CI testing (#1022)
b3d2e80 is described below

commit b3d2e80d28045087e92bff14121575033059df6d
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Wed Mar 7 15:19:30 2018 -0500

    Use matrix build for Travis CI testing (#1022)
    
    Use a matrix build to ensure Fluo is built against both Accumulo 1.7 and
    1.8 in Travis CI for pull requests and commits.
---
 .travis.yml | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 4548da8..b071db0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,17 +11,22 @@
 # or implied. See the License for the specific language governing permissions and limitations under
 # the License.
 language: java
-jdk:
-  - openjdk8
-script: mvn clean verify javadoc:jar -Daccumulo.version=1.8.1
 notifications:
   irc:
     channels:
       - "chat.freenode.net#fluo"
-    on_success: always
-    on_failure: always
     use_notice: true
+    on_success: change
+    on_failure: always
     skip_join: true
 cache:
   directories:
     - $HOME/.m2
+install: echo NOOP Skipping pre-fetch of Maven dependencies
+jdk:
+  - openjdk8
+env:
+  - ADDITIONAL_MAVEN_OPTS=
+  - ADDITIONAL_MAVEN_OPTS=-Daccumulo.version=1.8.1
+script:
+  - mvn clean verify javadoc:jar $ADDITIONAL_MAVEN_OPTS

-- 
To stop receiving notification emails like this one, please contact
ctubbsii@apache.org.