2019-12-25 10:27:20 -05: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:23:00 -04:00
|
|
|
on: [push, pull_request]
|
2019-12-25 10:27:20 -05:00
|
|
|
|
2022-10-06 18:36:29 -04:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-12-25 10:27:20 -05:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
2020-07-23 11:24:00 -04:00
|
|
|
continue-on-error: ${{ matrix.experimental }}
|
2019-12-25 10:27:20 -05:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-10-14 12:09:52 -04:00
|
|
|
java: [ 8, 11, 17, 21 ]
|
2020-07-23 11:24:00 -04:00
|
|
|
experimental: [false]
|
2021-09-28 11:04:18 -04:00
|
|
|
# include:
|
|
|
|
# - java: 18-ea
|
|
|
|
# experimental: true
|
2019-12-25 10:27:20 -05:00
|
|
|
|
|
|
|
steps:
|
2023-09-29 11:19:15 -04:00
|
|
|
- uses: actions/checkout@v4.1.0
|
2022-10-08 10:14:48 -04:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2023-09-08 09:04:09 -04:00
|
|
|
- uses: actions/cache@v3.3.2
|
2020-08-10 21:12:42 -04:00
|
|
|
with:
|
|
|
|
path: ~/.m2/repository
|
|
|
|
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-maven-
|
2019-12-25 10:27:20 -05:00
|
|
|
- name: Set up JDK ${{ matrix.java }}
|
2023-09-22 09:00:44 -04:00
|
|
|
uses: actions/setup-java@v3.13.0
|
2019-12-25 10:27:20 -05:00
|
|
|
with:
|
2022-07-29 08:37:27 -04:00
|
|
|
distribution: 'temurin'
|
2019-12-25 10:27:20 -05:00
|
|
|
java-version: ${{ matrix.java }}
|
|
|
|
- name: Build with Maven
|
2022-02-12 04:14:06 -05:00
|
|
|
# Use the default goal
|
2023-10-11 07:28:48 -04:00
|
|
|
run: mvn --show-version --batch-mode --no-transfer-progress
|