Skip to content

Commit 7d2e43f

Browse files
authored
fix(release): Fix cross-compilation for arm requiring glibc>=2.39 (#1405)
1 parent 294a90a commit 7d2e43f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/create_release_assets.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,10 @@ jobs:
151151
"aarch64-unknown-linux-musl",
152152
"x86_64-unknown-freebsd",
153153
]
154-
runs-on: ubuntu-latest
154+
# Run this one on an older version as well, to limit glibc to 2.34 instead of 2.39.
155+
# Even though this is cross-compiled, it links to the libc6-<arch>-cross installed on the host
156+
# (see the apt-get install calls below)
157+
runs-on: ubuntu-22.04
155158
steps:
156159
- uses: actions/[email protected]
157160

0 commit comments

Comments
 (0)