We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9417b commit 9f30a1fCopy full SHA for 9f30a1f
.github/workflows/graalvmTest.yml
@@ -18,13 +18,8 @@ jobs:
18
with:
19
distribution: graalvm
20
java-version: ${{ matrix.distribution }}
21
- - name: Maven Test
22
- run: mvn clean install
23
- - name: Application Testing
24
- run: |
25
- timeout 15s mvn exec:java
26
- if [ $? -eq 124 ]; then
27
- echo "Process timed out"
28
- else
29
- echo "Process finished with exit code $?"
30
- fi
+ - name: Application Test
+ run: |
+ java -cp java HelloWorldAppApplication
+ native-image -cp java HelloWorldAppApplication
+
0 commit comments