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 147539d commit baf1d0eCopy full SHA for baf1d0e
.github/workflows/test.yaml
@@ -31,8 +31,13 @@ jobs:
31
distribution: temurin
32
java-version: 17
33
34
+ - name: "Build native libraries"
35
+ run: bash ./scripts/build-linux-x86_64.sh
36
+
37
- name: "Run JVM tests"
- run: |
- bash ./scripts/build-linux-x86_64.sh
- ./gradlew test
38
- ./gradlew :examples:build
+ run: ./gradlew test
39
40
+ - name: "Build JVM examples"
41
+ # Run even if "Run JVM tests" step failed
42
+ if: ${{ always() }}
43
+ run: ./gradlew :examples:build
0 commit comments