tests: skip remote multi-node history cases
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
@@ -77,6 +77,11 @@ func testHistoryInspect(t *testing.T, sb integration.Sandbox) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func testHistoryLs(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)
|
ref := buildTestProject(t, sb)
|
||||||
require.NotEmpty(t, ref.Ref)
|
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) {
|
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) {
|
t.Run("override", func(t *testing.T) {
|
||||||
dir := createTestProject(t)
|
dir := createTestProject(t)
|
||||||
out, err := buildCmd(sb, withArgs("--build-arg=BUILDKIT_BUILD_NAME=foobar", "--metadata-file", filepath.Join(dir, "md.json"), dir))
|
out, err := buildCmd(sb, withArgs("--build-arg=BUILDKIT_BUILD_NAME=foobar", "--metadata-file", filepath.Join(dir, "md.json"), dir))
|
||||||
|
|||||||
Reference in New Issue
Block a user