blob: 46a8661d642265cb3835a7960e0444eec71815eb [file] [log] [blame]
#
# 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.
#
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: build
on: [push, pull_request]
jobs:
checkstyle:
uses: ./.github/workflows/sequential.yml
with:
maven-args: checkstyle:check
license:
uses: ./.github/workflows/sequential.yml
with:
maven-args: org.apache.rat:apache-rat-plugin:check
summary: "grep -r '!?????' --include='rat.txt' | awk '{print $3}'"
spotbugs:
uses: ./.github/workflows/sequential.yml
with:
maven-args: test-compile spotbugs:check
java-11:
name: 'compile'
uses: ./.github/workflows/sequential.yml
with:
maven-args: package -DskipTests
java-version: '11'
java-17:
name: 'compile'
uses: ./.github/workflows/sequential.yml
with:
maven-args: package -DskipTests
java-version: '17'
package:
uses: ./.github/workflows/parallel.yml
with:
maven-args: package
reports-path: "**/target/surefire-reports/*.txt"