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
|
|
|
|
2022-05-19 23:55:12 -04:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-09-05 11:58:15 -04:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
2023-08-13 14:38:19 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-07-22 10:59:54 -04:00
|
|
|
continue-on-error: ${{ matrix.experimental }}
|
2019-09-05 11:58:15 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-08-13 14:38:19 -04:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2023-10-15 10:19:10 -04:00
|
|
|
java: [ 8, 11, 17, 21 ]
|
2020-07-22 10:59:54 -04:00
|
|
|
experimental: [false]
|
2021-09-28 11:18:19 -04:00
|
|
|
# include:
|
2023-10-15 10:19:10 -04:00
|
|
|
# - java: 22-ea
|
2021-09-28 11:18:19 -04:00
|
|
|
# experimental: true
|
2019-09-05 11:58:15 -04:00
|
|
|
steps:
|
2023-09-29 13:16:31 -04:00
|
|
|
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
2022-10-08 10:23:43 -04:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2023-09-08 12:26:02 -04:00
|
|
|
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
|
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 }}
|
2023-09-21 07:36:40 -04:00
|
|
|
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
|
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
|
2023-10-11 07:46:36 -04:00
|
|
|
run: mvn --show-version --batch-mode --no-transfer-progress -Ddoclint=all
|