Skip to content

Commit be554f4

Browse files
ricardobranco777k8s-infra-cherrypick-robot
authored andcommitted
Skip TestExportAndImportMultiLayer on s390x
The test image ghcr.io/containerd/volume-copy-up:2.1 does not include a manifest for s390x, causing the test to fail with: "no manifest found for platform: not found". Signed-off-by: Ricardo Branco <[email protected]>
1 parent 59b2c55 commit be554f4

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

integration/client/import_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ func TestExportAndImport(t *testing.T) {
6565
// images remain sane, and that the Garbage Collector won't delete part of its
6666
// content.
6767
func TestExportAndImportMultiLayer(t *testing.T) {
68+
// ghcr.io/containerd/volume-copy-up:2.1 is not available on s390x
69+
if runtime.GOARCH == "s390x" {
70+
t.Skip("test image not available on s390x")
71+
}
6872
testExportImport(t, testMultiLayeredImage)
6973
}
7074

0 commit comments

Comments
 (0)