Skip to content

NUTCH-3054 Address deprecation of Node16 for all GitHub Actions (#817) #601

NUTCH-3054 Address deprecation of Node16 for all GitHub Actions (#817)

NUTCH-3054 Address deprecation of Node16 for all GitHub Actions (#817) #601

Workflow file for this run

# 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: master pull request ci
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
branches: [master]
jobs:
javadoc:
strategy:
matrix:
java: ['11']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4.2.1
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Javadoc
run: ant clean javadoc -buildfile build.xml
rat:
strategy:
matrix:
java: ['11']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4.2.1
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Run Apache Rat
run: ant clean run-rat -buildfile build.xml
- name: Cache unknown licenses
run: echo "UNKNOWN_LICENSES=$(sed -n 18p /home/runner/work/nutch/nutch/build/apache-rat-report.txt)" >> $GITHUB_ENV
- name: Versions
run: |
echo $UNKNOWN_LICENSES
- name: Fail if any unknown licenses
if: ${{ env.UNKNOWN_LICENSES != '0 Unknown Licenses' }}
run: exit 1
test:
strategy:
matrix:
java: ['11']
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4.2.1
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Test
run: ant clean test -buildfile build.xml