Skip to content

Commit bd1c90a

Browse files
authored
Merge pull request #604 from ader1990/remove_falco_until_upstream_fix
falco: temporarily disable Falco tests for main >= 4330
2 parents 2c5fdcd + 20d0fbf commit bd1c90a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

kola/tests/misc/falco.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package misc
22

33
import (
4+
"github.com/coreos/go-semver/semver"
45
"github.com/flatcar/mantle/kola"
56
"github.com/flatcar/mantle/kola/cluster"
67
"github.com/flatcar/mantle/kola/register"
@@ -17,8 +18,9 @@ func init() {
1718
// falco builder container can't handle our arm64 config (yet)
1819
Architectures: []string{"amd64"},
1920
// selinux blocks insmod from within container
20-
Flags: []register.Flag{register.NoEnableSelinux},
21-
SkipFunc: kola.SkipSecureboot,
21+
Flags: []register.Flag{register.NoEnableSelinux},
22+
SkipFunc: kola.SkipSecureboot,
23+
EndVersion: semver.Version{Major: 4330, Minor: 0, Patch: 0},
2224
})
2325
}
2426

0 commit comments

Comments
 (0)