update deprecated PMD rule names #1094
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: JMurmel Native Image builds | |
on: | |
push: | |
paths-ignore: | |
- CHANGES | |
- Dockerfile | |
- Dockerfile.distroless | |
- "**.md" | |
- "**.txt" | |
- "**.html" | |
- "**.lisp" | |
- "**.completions" | |
- "scribbles/**" | |
env: | |
JAVA_VERSION: 23 | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: JMurmel Native on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-20.04] | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: graalvm/setup-graalvm@4a200f28cd70d1940b5e33bd00830b7dc71a7e2b # v1 | |
with: | |
distribution: 'graalvm' | |
java-version: ${{ env.JAVA_VERSION }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
native-image-job-reports: 'true' | |
- name: Restore Maven repo | |
id: restore-maven | |
uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-graalvm-maven-${{ hashFiles('**/pom.xml') }} | |
- name: Build JMurmel | |
run: | | |
mvn -V -B clean package -pl lambda "-Djavac.target=${{ env.JAVA_VERSION }}" -DskipTests | |
mvn -V -B clean package -f graalvm/pom.xml "-Djavac.target=${{ env.JAVA_VERSION }}" -DskipTests | |
- name: Run native image Windows | |
if: runner.os == 'Windows' | |
run: | | |
copy samples.murmel-mlib\mlib.lisp . | |
native-image --no-fallback --initialize-at-build-time=io.github.jmurmel --initialize-at-run-time=io.github.jmurmel.InstallDir -H:IncludeResources="META-INF/.*" -H:ReflectionConfigurationFiles=./graalvm/src/main/graalvm/reflectconfig -H:DynamicProxyConfigurationFiles=./graalvm/src/main/graalvm/proxyconfig -H:SerializationConfigurationFiles=./graalvm/src/main/graalvm/serializationconfig -cp ./graalvm/target/unsupported.jar -jar ./lambda/target/jmurmel.jar | |
./jmurmel --version | |
- name: Run native image Linux | |
if: runner.os == 'Linux' | |
run: | | |
cp samples.murmel-mlib/mlib.lisp . | |
native-image --gc=G1 --no-fallback --initialize-at-build-time=io.github.jmurmel --initialize-at-run-time=io.github.jmurmel.InstallDir -H:IncludeResources="META-INF/.*" -H:ReflectionConfigurationFiles=./graalvm/src/main/graalvm/reflectconfig -H:DynamicProxyConfigurationFiles=./graalvm/src/main/graalvm/proxyconfig -H:SerializationConfigurationFiles=./graalvm/src/main/graalvm/serializationconfig -cp ./graalvm/target/unsupported.jar -jar ./lambda/target/jmurmel.jar | |
./jmurmel --version | |
- name: Save Maven repo | |
id: cache-maven | |
uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ steps.restore-maven.outputs.cache-primary-key }} | |
- name: Upload binaries, mlib and docs | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: jmurmel-native-${{ runner.os }}-${{ runner.arch }} | |
path: | | |
jmurmel | |
jmurmel.exe | |
mlib.lisp | |
murmel-langref.md | |
mlib.md | |
murmel-langref.html | |
mlib.html | |
LICENSE |