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:
|
2024-07-22 08:25:06 -04:00
|
|
|
java: [ 8, 11, 17, 21, 22 ]
|
2020-07-23 11:24:00 -04:00
|
|
|
experimental: [false]
|
2024-05-22 08:59:59 -04:00
|
|
|
include:
|
2024-07-22 08:46:27 -04:00
|
|
|
- java: 23-ea
|
|
|
|
experimental: true
|
|
|
|
- java: 24-ea
|
|
|
|
experimental: true
|
2019-12-25 10:27:20 -05:00
|
|
|
|
|
|
|
steps:
|
2024-06-14 08:22:59 -04:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2022-10-08 10:14:48 -04:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2024-03-22 09:08:07 -04:00
|
|
|
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.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 }}
|
2024-08-09 08:59:00 -04:00
|
|
|
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2
|
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
|
2024-05-16 14:47:32 -04:00
|
|
|
run: mvn --errors --show-version --batch-mode --no-transfer-progress
|