blob: 447caa8e2833b89cb3f4bb9245c0ad067bed68f5 [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.
name: License Check
run-name: ${{ github.actor }} is executing the RAT license check🚀
on:
workflow_dispatch:
jobs:
licenseCheck:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
- name: Set up OpenJDK 11 Temurin x64
uses: actions/setup-java@v4.0.0
with:
java-version: '11'
distribution: 'temurin'
architecture: x64
cache: maven
- name: Setup Ant
- uses: cedx/setup-ant@v2
with:
optional-tasks: true
version: 1.10.14
- name: Setup Maven
uses: s4u/setup-maven-action@1.11.0
with:
maven-version: 3.9.6
- name: Ant Build
run: ant make-core-deps make-deps
- name: Maven Build
run: mvn clean install -Dmaven.test.skip=true
- name: RAT licence checks
run: mvn -pl . org.apache.rat:apache-rat:check
- name: RAT Report
if: always()
run: |
echo -e "Printing RAT report\n"
cat target/rat.txt || true