Skip to content

Commit 0a09f82

Browse files
committed
Solve issue with runtime on ubuntu noble.
1 parent 3132a95 commit 0a09f82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/linux-sanitizer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
image: ["debian:trixie-slim", "debian:bookworm-slim", "ubuntu:jammy", "ubuntu:mantic"]
25+
image: ["debian:trixie-slim", "debian:bookworm-slim", "ubuntu:noble", "ubuntu:jammy"]
2626
sanitizer: [address-sanitizer, thread-sanitizer] # TODO: memory-sanitizer not supported by GCC
2727

2828
env:

tools/metacall-runtime.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ sub_rpc(){
226226
;;
227227
esac
228228

229-
if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "unstable" ]; then
229+
if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "noble" ] || [ "${CODENAME}" = "unstable" ]; then
230230
sub_apt_install_hold libcurl4t64
231231
else
232232
sub_apt_install_hold libcurl4
@@ -345,7 +345,7 @@ sub_backtrace(){
345345
;;
346346
esac
347347

348-
if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "unstable" ]; then
348+
if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "noble" ] || [ "${CODENAME}" = "unstable" ]; then
349349
sub_apt_install_hold libdw1t64 libelf1t64
350350
else
351351
sub_apt_install_hold libdw1

0 commit comments

Comments
 (0)