Skip to content

Add developer info for Alexander Kriegisch #291

Add developer info for Alexander Kriegisch

Add developer info for Alexander Kriegisch #291

Workflow file for this run

# The MIT License
#
# Copyright 2005-2006 The Codehaus.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
# of the Software, and to permit persons to whom the Software is furnished to do
# so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
name: Java CI
on:
workflow_dispatch: {}
push:
branches:
- '*'
- '!gh-pages'
pull_request:
branches:
- '*'
- '!gh-pages'
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macOS-latest ]
# TODO: Replace matrix 11, 14, 17 by 11, 17, (17+n) after 18 is out, i.e. keep LTS + latest JDK
java:
# Hotspot VM, the "default" VM (14 unavailable for Temurin, use older adopt-hotspot)
- version: 11
dist: temurin
- version: 14
dist: adopt-hotspot
- version: 17
dist: temurin
# Zulu VM, based on Hotspot
- version: 11
dist: zulu
- version: 14
dist: zulu
- version: 17
dist: zulu
# OpenJ9, an alternate JVM implementation.
- version: 11
dist: adopt-openj9
- version: 14
dist: adopt-openj9
- version: 17
dist: adopt-openj9
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Set Git options
# Check out as-is, commit Unix-style line endings
run: git config --global core.autocrlf input
- name: Checkout
uses: actions/checkout@v3
- name: Set up cache for ~./m2/repository
uses: actions/cache@v3
with:
path: |
~/.m2/repository
!~/.m2/repository/dev/aspectj/aspectj-maven-plugin
key: maven-${{ matrix.os }}-java${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-${{ matrix.os }}-java${{ matrix.java }}-
maven-${{ matrix.os }}-
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java.version }}
distribution: ${{ matrix.java.dist }}
- name: Build with Maven
run: mvn --show-version --errors --batch-mode "-Dinvoker.streamLogsOnFailures=true" clean verify site