Skip to content

Commit 37bbe4a

Browse files
committed
Update linux versions.
1 parent b9dfbca commit 37bbe4a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ COMPOSE_PROJECT_NAME='metacall'
2323
# Configure default variables
2424
METACALL_PATH=/usr/local/metacall
2525
METACALL_BUILD_TYPE=relwithdebinfo
26-
METACALL_BASE_IMAGE=debian:bookworm-slim # debian:bullseye-slim # ubuntu:jammy # alpine:3.17
26+
METACALL_BASE_IMAGE=debian:trixie-slim # debian:bookworm-slim # ubuntu:noble # ubuntu:mantic # alpine:3.17

.github/workflows/linux-sanitizer.yml

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

2828
env:

.github/workflows/linux-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
build: [debug, release]
25-
image: ["debian:bookworm-slim", "debian:bullseye-slim", "ubuntu:jammy"] # TODO: "alpine:3.17"
25+
image: ["debian:trixie-slim", "debian:bookworm-slim", "ubuntu:noble", "ubuntu:mantic"] # TODO: "alpine:3.17"
2626

2727
steps:
2828
- name: Check out the repository

tools/metacall-environment.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -595,8 +595,8 @@ sub_c(){
595595

596596
case ${LINUX_DISTRO} in
597597
debian)
598-
if [ "${VERSION}" = "unstable" ] || [ "${VERSION}" = "testing" ] || [ "${VERSION_CODENAME}" = "bookworm" ]; then
599-
# TODO: For now, bookworm == sid, change when bookworm is released
598+
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
599+
# TODO: For now, trixie == sid, change when trixie is released
600600
CODENAME="unstable"
601601
LINKNAME=""
602602
else
@@ -765,8 +765,8 @@ sub_clangformat(){
765765

766766
case ${LINUX_DISTRO} in
767767
debian)
768-
if [ "${VERSION}" = "unstable" ] || [ "${VERSION}" = "testing" ] || [ "${VERSION_CODENAME}" = "bookworm" ]; then
769-
# TODO: For now, bookworm == sid, change when bookworm is released
768+
if [ "${VERSION:-}" = "unstable" ] || [ "${VERSION:-}" = "testing" ] || [ "${VERSION_CODENAME}" = "trixie" ]; then
769+
# TODO: For now, trixie == sid, change when trixie is released
770770
CODENAME="unstable"
771771
LINKNAME=""
772772
else

tools/metacall-runtime.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ sub_c(){
227227

228228
case ${LINUX_DISTRO} in
229229
debian)
230-
if [ "${VERSION}" == "unstable" ] || [ "${VERSION}" == "testing" ] || [[ "${VERSION_CODENAME}" == "bookworm" ]]; then
231-
# TODO: For now, bookworm == sid, change when bookworm is released
230+
if [ "${VERSION:-}" == "unstable" ] || [ "${VERSION:-}" == "testing" ] || [[ "${VERSION_CODENAME}" == "trixie" ]]; then
231+
# TODO: For now, trixie == sid, change when trixie is released
232232
CODENAME="unstable"
233233
LINKNAME=""
234234
else

0 commit comments

Comments
 (0)