2019-09-05 11:58:15 -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.
|
|
|
|
|
|
|
|
name: Java CI
|
|
|
|
|
2020-08-31 21:25:40 -04:00
|
|
|
on: [push, pull_request]
|
2019-09-05 11:58:15 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
2020-07-22 10:59:54 -04:00
|
|
|
continue-on-error: ${{ matrix.experimental }}
|
2019-09-05 11:58:15 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-04-19 08:39:40 -04:00
|
|
|
#
|
|
|
|
# Allow Java 16 to fail to allow Java 8 and 11 to run until we know what's wrong on Java 16.
|
|
|
|
# java: [ 8, 11, 16 ]
|
|
|
|
java: [ 8, 11 ]
|
2020-07-22 10:59:54 -04:00
|
|
|
experimental: [false]
|
2021-04-19 08:39:40 -04:00
|
|
|
include:
|
|
|
|
- java: 16
|
|
|
|
experimental: true
|
2020-12-29 19:13:52 -05:00
|
|
|
- java: 17-ea
|
|
|
|
experimental: true
|
2019-09-05 11:58:15 -04:00
|
|
|
steps:
|
2020-11-06 09:42:09 -05:00
|
|
|
- uses: actions/checkout@v2.3.4
|
2021-06-22 08:44:02 -04:00
|
|
|
- uses: actions/cache@v2.1.6
|
2020-08-10 21:16:35 -04:00
|
|
|
with:
|
|
|
|
path: ~/.m2/repository
|
|
|
|
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-maven-
|
2019-09-05 11:58:15 -04:00
|
|
|
- name: Set up JDK ${{ matrix.java }}
|
2021-04-18 18:47:19 -04:00
|
|
|
uses: actions/setup-java@v2
|
2019-09-05 11:58:15 -04:00
|
|
|
with:
|
2021-08-29 00:18:52 -04:00
|
|
|
distribution: 'temurin'
|
2019-09-05 11:58:15 -04:00
|
|
|
java-version: ${{ matrix.java }}
|
|
|
|
- name: Build with Maven
|
2020-08-05 09:39:05 -04:00
|
|
|
run: mvn -V -Ddoclint=all --file pom.xml --no-transfer-progress
|