From 49e43a25aea760abb3b83537a29994527b9d9d78 Mon Sep 17 00:00:00 2001 From: Fabio Niephaus Date: Tue, 23 Sep 2025 13:32:57 +0200 Subject: [PATCH] Build simple web server. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5b8723..d4f9e12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -394,6 +394,8 @@ jobs: javac HelloWorld.java native-image --static --libc=musl HelloWorld ./helloworld + native-image --static --libc=musl -m jdk.httpserver + ./jdk.httpserver --help test-action-native-image-musl: name: native-image-musl on ubuntu-latest runs-on: ubuntu-latest @@ -417,6 +419,9 @@ jobs: javac HelloWorld.java native-image --static --libc=musl HelloWorld ./helloworld + native-image --static --libc=musl --gc=G1 -m jdk.httpserver + ./jdk.httpserver --help + # test-action-extensive: # name: extensive tests on ubuntu-latest