Skip to content

Commit

Permalink
Solve issue with runtime on ubuntu noble.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Aug 14, 2024
1 parent 3132a95 commit 0a09f82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-sanitizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: ["debian:trixie-slim", "debian:bookworm-slim", "ubuntu:jammy", "ubuntu:mantic"]
image: ["debian:trixie-slim", "debian:bookworm-slim", "ubuntu:noble", "ubuntu:jammy"]
sanitizer: [address-sanitizer, thread-sanitizer] # TODO: memory-sanitizer not supported by GCC

env:
Expand Down
4 changes: 2 additions & 2 deletions tools/metacall-runtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ sub_rpc(){
;;
esac

if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "unstable" ]; then
if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "noble" ] || [ "${CODENAME}" = "unstable" ]; then
sub_apt_install_hold libcurl4t64
else
sub_apt_install_hold libcurl4
Expand Down Expand Up @@ -345,7 +345,7 @@ sub_backtrace(){
;;
esac

if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "unstable" ]; then
if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "noble" ] || [ "${CODENAME}" = "unstable" ]; then
sub_apt_install_hold libdw1t64 libelf1t64
else
sub_apt_install_hold libdw1
Expand Down

0 comments on commit 0a09f82

Please sign in to comment.