Skip to content

Update ASM (9.5 -> 9.7) #100

Update ASM (9.5 -> 9.7)

Update ASM (9.5 -> 9.7) #100

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019]
java: [6, 7, 7.0.121, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- id: get-major-java-version
run: echo "::set-output name=value::$(echo ${{ matrix.java }} | cut -d. -f1)"
- name: Java version
run: java -version && javac -version
- name: Build
if: ${{ steps.get-major-java-version.outputs.value < 16 }}
run: ./mvnw verify -Ppitest
- name: Build
if: ${{ steps.get-major-java-version.outputs.value >= 16 }}
run: ./mvnw verify -Ppitest
env:
MAVEN_OPTS: "--add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED"
# This is required only to run PIT Mutation Testing 1.2.5 with Java >= 16