adding java folder to be able to create source jar files. #1200
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Parent | |
on: | |
push: | |
branches: [master, maint-*] | |
pull_request: | |
branches: [master, maint-*] | |
# Does not help, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=574043 | |
#permissions: read-all | |
concurrency: | |
group: ${{ github.workflow }}-${{ (github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main' ) && github.ref || github.sha }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main' && !contains(github.event.pull_request.labels.*.name, 'ci:full') }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
jdk: ['17'] | |
# temurin is Eclipse/AdoptOpenJDK/Adoptium | |
# 'liberica' is a preferred Spring SDK | |
distribution: ['temurin'] | |
experimental: [false] | |
# jena 3.x has some locking problems under JDK 16/17 | |
include: | |
- jdk: '20' | |
distribution: zulu | |
experimental: true | |
- jdk: '21' | |
distribution: zulu | |
experimental: true | |
continue-on-error: ${{ matrix.experimental }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Set up JDK ${{ matrix.jdk }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.jdk }} | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-${{ matrix.jdk }}_${{ matrix.distribution }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.jdk }}_${{ matrix.distribution }}-maven- | |
- name: Build with Maven | |
run: | | |
mvn -B verify --file pom.xml |