Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Commit 52f4ed5

Browse files
nit: cleanup
1 parent b409bf1 commit 52f4ed5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
ref: 04f42ceca40f73e2978b50e93806c2a18c1281fc # v1.2.13
117117
path: zlib
118118
clean: false
119-
- name: Install musl
119+
- name: Build musl and zlib
120120
run: |
121121
# See https://www.graalvm.org/latest/reference-manual/native-image/guides/build-static-executables/
122122
# We have to build MUSL from source due to ensure recent CVEs are patched

build-scripts/graal.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,8 @@ const flagsByPlatformAndArch = new Map([
4444
['linux-arm64', ['-H:+StaticExecutableWithDynamicLibC']], // On Graal JDK 24 and newer, this is --static-nolibc
4545
]);
4646

47-
const platformFlags = flagsByPlatformAndArch.get(`${process.platform}-${process.arch}`) || [];
4847
const NATIVE_IMAGE_BUILD_ARGS = ['-H:+UnlockExperimentalVMOptions'].concat(
49-
platformFlags,
48+
flagsByPlatformAndArch.get(`${process.platform}-${process.arch}`) || [],
5049
[
5150
'-H:IncludeResourceBundles=org.kohsuke.args4j.Messages',
5251
'-H:IncludeResourceBundles=org.kohsuke.args4j.spi.Messages',

0 commit comments

Comments
 (0)