[build images]

This commit is contained in:
Meghan Denny
2025-06-27 23:09:20 -07:00
parent b22aba55c3
commit 69c4b67283
6 changed files with 7 additions and 3 deletions

View File

@@ -129,13 +129,10 @@ const testPlatforms = [
{ os: "linux", arch: "x64", profile: "asan", distro: "debian", release: "12", tier: "latest" },
{ os: "linux", arch: "aarch64", distro: "ubuntu", release: "25.04", tier: "latest" },
{ os: "linux", arch: "aarch64", distro: "ubuntu", release: "24.04", tier: "latest" },
{ os: "linux", arch: "aarch64", distro: "ubuntu", release: "20.04", tier: "oldest" },
{ os: "linux", arch: "x64", distro: "ubuntu", release: "25.04", tier: "latest" },
{ os: "linux", arch: "x64", distro: "ubuntu", release: "24.04", tier: "latest" },
{ os: "linux", arch: "x64", distro: "ubuntu", release: "20.04", tier: "oldest" },
{ os: "linux", arch: "x64", baseline: true, distro: "ubuntu", release: "25.04", tier: "latest" },
{ os: "linux", arch: "x64", baseline: true, distro: "ubuntu", release: "24.04", tier: "latest" },
{ os: "linux", arch: "x64", baseline: true, distro: "ubuntu", release: "20.04", tier: "oldest" },
{ os: "linux", arch: "aarch64", abi: "musl", distro: "alpine", release: "3.21", tier: "latest" },
{ os: "linux", arch: "x64", abi: "musl", distro: "alpine", release: "3.21", tier: "latest" },
{ os: "linux", arch: "x64", abi: "musl", baseline: true, distro: "alpine", release: "3.21", tier: "latest" },

View File

@@ -101,6 +101,7 @@ pub fn internalErrorName(globalThis: *JSC.JSGlobalObject, callframe: *JSC.CallFr
if (err_int == -bun.sys.UV_E.SOCKTNOSUPPORT) return bun.String.static("ESOCKTNOSUPPORT").toJS(globalThis);
if (err_int == -bun.sys.UV_E.NODATA) return bun.String.static("ENODATA").toJS(globalThis);
if (err_int == -bun.sys.UV_E.UNATCH) return bun.String.static("EUNATCH").toJS(globalThis);
if (err_int == -bun.sys.UV_E.NOEXEC) return bun.String.static("ENOEXEC").toJS(globalThis);
var fmtstring = bun.String.createFormat("Unknown system error {d}", .{err_int}) catch bun.outOfMemory();
return fmtstring.transferToJS(globalThis);

View File

@@ -887,6 +887,7 @@ pub const UV_EILSEQ: c_int = -4027;
pub const UV_ESOCKTNOSUPPORT: c_int = -4025;
pub const UV_ENODATA: c_int = -4024;
pub const UV_EUNATCH: c_int = -4023;
pub const UV_ENOEXEC: c_int = -4022;
pub const UV_ERRNO_MAX: c_int = -4096;
pub const uv_errno_t = c_int;
pub const UV_UNKNOWN_HANDLE: c_int = 0;

View File

@@ -193,6 +193,7 @@ pub const UV_E = struct {
pub const SOCKTNOSUPPORT: i32 = @intFromEnum(SystemErrno.ESOCKTNOSUPPORT);
pub const NODATA: i32 = @intFromEnum(SystemErrno.ENODATA);
pub const UNATCH: i32 = -bun.windows.libuv.UV_EUNATCH;
pub const NOEXEC: i32 = @intFromEnum(SystemErrno.ENOEXEC);
};
pub fn getErrno(rc: anytype) E {
if (rc == -1) {

View File

@@ -222,6 +222,7 @@ pub const UV_E = struct {
pub const SOCKTNOSUPPORT: i32 = @intFromEnum(SystemErrno.ESOCKTNOSUPPORT);
pub const NODATA: i32 = @intFromEnum(SystemErrno.ENODATA);
pub const UNATCH: i32 = @intFromEnum(SystemErrno.EUNATCH);
pub const NOEXEC: i32 = @intFromEnum(SystemErrno.ENOEXEC);
};
pub fn getErrno(rc: anytype) E {
const Type = @TypeOf(rc);

View File

@@ -222,6 +222,7 @@ pub const E = enum(u16) {
UV_ESOCKTNOSUPPORT = -uv.UV_ESOCKTNOSUPPORT,
UV_ERRNO_MAX = -uv.UV_ERRNO_MAX,
UV_EUNATCH = -uv.UV_EUNATCH,
UV_ENOEXEC = -uv.UV_ENOEXEC,
};
pub const S = struct {
@@ -524,6 +525,7 @@ pub const SystemErrno = enum(u16) {
UV_ESOCKTNOSUPPORT = -uv.UV_ESOCKTNOSUPPORT,
UV_ERRNO_MAX = -uv.UV_ERRNO_MAX,
UV_EUNATCH = -uv.UV_EUNATCH,
UV_ENOEXEC = -uv.UV_ENOEXEC,
pub const max = 137;
@@ -1162,6 +1164,7 @@ pub const UV_E = struct {
pub const SOCKTNOSUPPORT = -uv.UV_ESOCKTNOSUPPORT;
pub const NODATA = -uv.UV_ENODATA;
pub const UNATCH = -uv.UV_EUNATCH;
pub const NOEXEC = -uv.UV_ENOEXEC;
};
const std = @import("std");
const bun = @import("bun");