all: update to debian 13 (#24055) [publish images]

This commit is contained in:
Meghan Denny
2025-11-28 15:01:40 -08:00
committed by GitHub
parent 4cf9b794c9
commit 5bdb8ec0cb
10 changed files with 20 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/sh
# Version: 20
# Version: 21
# A script that installs the dependencies needed to build and test Bun.
# This should work on macOS and Linux with a POSIX shell.
@@ -1766,7 +1766,7 @@ ensure_no_tmpfs() {
if ! [ "$os" = "linux" ]; then
return
fi
if ! [ "$distro" = "ubuntu" ]; then
if ! ( [ "$distro" = "ubuntu" ] || [ "$distro" = "debian" ] ); then
return
fi

View File

@@ -2842,7 +2842,7 @@ export function printEnvironment() {
if (isCI) {
startGroup("Environment", () => {
for (const [key, value] of Object.entries(process.env)) {
for (const [key, value] of Object.entries(process.env).toSorted()) {
console.log(`${key}:`, value);
}
});