Update to ASM 9.6 + POM and code refresh #16
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
# | |
# Copyright (c) 2023 Contributors to the Eclipse Foundation | |
# | |
# This program and the accompanying materials are made available under the | |
# terms of the Eclipse Public License v. 2.0 which is available at | |
# http://www.eclipse.org/legal/epl-2.0, | |
# or the Eclipse Distribution License v. 1.0 which is available at | |
# http://www.eclipse.org/org/documents/edl-v10.php. | |
# | |
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | |
# | |
name: EclipseLink ASM PR build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Test on JDK ${{ matrix.java_version }} | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
java_version: [ 17, 21 ] | |
steps: | |
- name: Checkout for build | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java_version }} | |
cache: maven | |
- name: Verify | |
run: mvn -B -V -U -C -f org.eclipse.persistence.asm/pom.xml -Poss-release clean verify -Dgpg.skip=true | |
- name: License check | |
if: ${{ matrix.java_version }} == '17' | |
run: mvn -B -V -U -C -f org.eclipse.persistence.asm/pom.xml -Plicense-check clean verify -Dgpg.skip=true | |
- name: Upload license-check info | |
uses: actions/upload-artifact@v3 | |
with: | |
name: license-summary.txt | |
path: org.eclipse.persistence.asm/target/dash/summary |