aboutsummaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-08-17 14:56:29 +0000
committerGitHub <noreply@github.com>2022-08-17 14:56:29 +0000
commitf70c9cd78bd377ddc01acc67f00af38325f40edd (patch)
treeded2ee95529b22f0201d439ba1ba9e739d885077 /pkg
parentc2f9ab1a1ae3adf0afb80faebead8fcc7a5b53d0 (diff)
parent2a6daa1e313c18814192548627058a85dc97f158 (diff)
downloadpodman-f70c9cd78bd377ddc01acc67f00af38325f40edd.tar.gz
podman-f70c9cd78bd377ddc01acc67f00af38325f40edd.tar.bz2
podman-f70c9cd78bd377ddc01acc67f00af38325f40edd.zip
Merge pull request #15031 from lsm5/ec2-aarch64-machine
Cirrus: add podman_machine_aarch64
Diffstat (limited to 'pkg')
-rw-r--r--pkg/machine/e2e/basic_test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/machine/e2e/basic_test.go b/pkg/machine/e2e/basic_test.go
index da0310485..fa1728770 100644
--- a/pkg/machine/e2e/basic_test.go
+++ b/pkg/machine/e2e/basic_test.go
@@ -1,6 +1,8 @@
package e2e_test
import (
+ "os"
+
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/gexec"
@@ -20,6 +22,12 @@ var _ = Describe("run basic podman commands", func() {
})
It("Basic ops", func() {
+ // golangci-lint has trouble with actually skipping tests marked Skip
+ // so skip it on cirrus envs and where CIRRUS_CI isn't set.
+ if os.Getenv("CIRRUS_CI") != "false" {
+ Skip("FIXME: #15347 - ssh know hosts broken - fails on PR runs and on x86_64")
+ }
+
name := randomString()
i := new(initMachine)
session, err := mb.setName(name).setCmd(i.withImagePath(mb.imagePath).withNow()).run()