Skip to content

Commit 08f2416

Browse files
committed
Fix workflows
1 parent 50197aa commit 08f2416

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

.github/workflows/build_fj-doc-native-quarkus_test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ on:
1717
push:
1818
branches:
1919
- develop
20-
- assessment/native_image
2120
pull_request:
2221
types:
2322
- opened

.github/workflows/build_maven_compatibility.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,23 @@ jobs:
4848
java-version: ${{ matrix.java }}
4949
- name: Maven build
5050
run: mvn clean install -P full,coverage
51+
check-graal:
52+
runs-on: ${{ matrix.os }}
53+
strategy:
54+
matrix:
55+
distribution: [ 'graalvm' ]
56+
java: [ '21', '23' ]
57+
os: [ 'ubuntu-latest' ]
58+
name: Java ${{ matrix.os }} ${{ matrix.java }} (${{ matrix.distribution }}) compatibility check
59+
steps:
60+
- uses: actions/checkout@main
61+
- name: Setup java
62+
uses: actions/setup-java@main
63+
with:
64+
distribution: ${{ matrix.distribution }}
65+
java-version: ${{ matrix.java }}
66+
- name: Maven build
67+
run: mvn clean install -P full,coverage
5168
check-ms:
5269
runs-on: ${{ matrix.os }}
5370
strategy:

fj-doc-native-quarkus/src/main/resources/application.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ greeting:
33

44
quarkus:
55
native:
6-
additional-build-args: -H:+UnlockExperimentalVMOptions,\
7-
-H:IncludeResources=fj-doc-native-quarkus/fm-doc-process-config.xml,\
6+
additional-build-args: -H:IncludeResources=fj-doc-native-quarkus/fm-doc-process-config.xml,\
87
-H:IncludeResources=fj-doc-native-quarkus/template/document.ftl

0 commit comments

Comments
 (0)