We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7311823 commit 19ea1f4Copy full SHA for 19ea1f4
1 file changed
.github/workflows/maven.yml
@@ -33,6 +33,24 @@ jobs:
33
-cp target/JoltPhysics-JavaFFM-5.5.0-jar-with-dependencies.jar \
34
volucris.bindings.jolt.HelloWorld
35
36
+ Linux_Arm64:
37
+ runs-on: ubuntu-24.04-arm
38
+ steps:
39
+ - uses: actions/checkout@v7
40
+ - name: Set up JDK 26
41
+ uses: actions/setup-java@v5
42
+ with:
43
+ java-version: '26'
44
+ distribution: 'temurin'
45
+ cache: maven
46
+ - name: Build with Maven
47
+ run: mvn -B package --file pom.xml
48
+ - name: Execute the HelloWorld app
49
+ run: |
50
+ $JAVA_HOME/bin/java --enable-preview --enable-native-access=ALL-UNNAMED \
51
+ -cp target/JoltPhysics-JavaFFM-5.5.0-jar-with-dependencies.jar \
52
+ volucris.bindings.jolt.HelloWorld
53
+
54
macOS:
55
runs-on: macos-26
56
steps:
0 commit comments