2016-06-05 13:50:27 -04:00
|
|
|
# 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.
|
|
|
|
|
2015-04-08 14:36:36 -04:00
|
|
|
language: java
|
2020-07-09 08:57:12 -04:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.m2
|
2018-10-06 04:22:57 -04:00
|
|
|
jdk:
|
2019-04-16 09:17:15 -04:00
|
|
|
- openjdk8
|
2018-10-06 04:22:57 -04:00
|
|
|
- openjdk11
|
2020-03-21 10:26:48 -04:00
|
|
|
- openjdk14
|
2018-10-06 04:30:32 -04:00
|
|
|
- openjdk-ea
|
|
|
|
matrix:
|
2019-07-29 09:20:04 -04:00
|
|
|
include:
|
|
|
|
- os: linux-ppc64le
|
|
|
|
jdk: openjdk8
|
2018-10-06 04:30:32 -04:00
|
|
|
allow_failures:
|
|
|
|
- jdk: openjdk-ea
|
2017-03-05 11:03:01 -05:00
|
|
|
script:
|
2017-07-14 14:50:43 -04:00
|
|
|
- mvn
|
2015-04-08 14:36:36 -04:00
|
|
|
after_success:
|
2019-09-12 15:52:58 -04:00
|
|
|
- mvn clean test jacoco:report coveralls:report -Ptravis-jacoco javadoc:javadoc -Ddoclint=all
|