From 176e497922ab6823298e9369ab3e373bfe94ab59 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Thu, 12 Mar 2026 11:30:58 +0100 Subject: [PATCH] tests: skip remote multi-node history cases Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- tests/history.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/history.go b/tests/history.go index fa3526f37..eae26d693 100644 --- a/tests/history.go +++ b/tests/history.go @@ -77,6 +77,11 @@ func testHistoryInspect(t *testing.T, sb integration.Sandbox) { } func testHistoryLs(t *testing.T, sb integration.Sandbox) { + if isRemoteMultiNodeWorker(sb) { + // FIXME: "history ls" fails on multi nodes + t.Skip("fails with multi nodes") + } + ref := buildTestProject(t, sb) require.NotEmpty(t, ref.Ref) @@ -141,6 +146,11 @@ func testHistoryLsStoppedBuilder(t *testing.T, sb integration.Sandbox) { } func testHistoryBuildName(t *testing.T, sb integration.Sandbox) { + if isRemoteMultiNodeWorker(sb) { + // FIXME: "history ls" fails on multi nodes + t.Skip("fails with multi nodes") + } + t.Run("override", func(t *testing.T) { dir := createTestProject(t) out, err := buildCmd(sb, withArgs("--build-arg=BUILDKIT_BUILD_NAME=foobar", "--metadata-file", filepath.Join(dir, "md.json"), dir))