We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af1f3a0 commit 8fdf341Copy full SHA for 8fdf341
1 file changed
.github/workflows/maven.yml
@@ -15,10 +15,26 @@ on:
15
branches: [ "Overhaul" ]
16
17
jobs:
18
- build:
19
-
+ Linux:
20
runs-on: ubuntu-latest
+ steps:
21
+ - uses: actions/checkout@v7
22
+ - name: Set up JDK 26
23
+ uses: actions/setup-java@v5
24
+ with:
25
+ java-version: '26'
26
+ distribution: 'temurin'
27
+ cache: maven
28
+ - name: Build with Maven
29
+ run: mvn -B package --file pom.xml
30
+ - name: Execute the HelloWorld app
31
+ run: |
32
+ $JAVA_HOME/bin/java --enable-preview --enable-native-access=ALL-UNNAMED \
33
+ -cp target/JoltPhysics-JavaFFM-5.5.0-jar-with-dependencies.jar \
34
+ volucris.bindings.jolt.HelloWorld
35
36
+ macOS:
37
+ runs-on: macos-26
38
steps:
39
- uses: actions/checkout@v7
40
- name: Set up JDK 26
0 commit comments