Skip to content

Commit 0fe3e22

Browse files
committed
GitHub CI: Just avoid running GraalVM native test on Windows, which is currently broken. It already runs on Linux, I think that's enough. The complexity added to make that test work on the Windows (vctools installation, exe suffix) is not worth it.
1 parent 09d6cfb commit 0fe3e22

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ jobs:
8484
# </html>
8585
- name: Test GraalVM native support (build and run)
8686
id: native_test
87-
run: './gradlew :freemarker-test-graalvm-native:nativeCompile;./freemarker-test-graalvm-native/build/native/nativeCompile/freemarker-test-graalvm-native'
87+
if: runner.os != 'Windows
88+
run: './gradlew :freemarker-test-graalvm-native:nativeCompile./freemarker-test-graalvm-native/build/native/nativeCompile/freemarker-test-graalvm-native'
8889
- name: Upload Failed Report
8990
uses: actions/upload-artifact@v4
9091
if: failure() && steps.build_step.outcome == 'failure'

0 commit comments

Comments
 (0)