Skip to content

Commit ffc74f4

Browse files
authored
Merge pull request #976 from jlebon/pr/override-ci-kernel
ci: Freeze kernel at 5.6.7 due to loop regression breaking blackbox test
2 parents ee616d5 + 7edf7a3 commit ffc74f4

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.cci.jenkinsfile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@ cosaPod(buildroot: true) {
66
// hack to satisfy golang compiler wanting to cache things
77
shwrap("mkdir cache")
88
withEnv(["XDG_CACHE_HOME=${env.WORKSPACE}/cache"]) {
9-
fcosBuild(make: true, skipKola: true)
9+
// freeze kernel to 5.6.7 for now to avoid a regression in loopback
10+
// code which interferes with blackbox testing
11+
// https://bugs.archlinux.org/task/66526
12+
shwrap("""
13+
mkdir -p /srv/fcos && cd /srv/fcos
14+
cosa init https://github.com/coreos/fedora-coreos-config
15+
mkdir -p overrides/rpm && cd overrides/rpm
16+
curl -L --remote-name-all https://kojipkgs.fedoraproject.org//packages/kernel/5.6.7/200.fc31/x86_64/kernel{,-core,-modules}-5.6.7-200.fc31.x86_64.rpm
17+
""")
18+
fcosBuild(skipInit: true, make: true, skipKola: true)
1019
}
1120

1221
// we run the blackbox tests separately instead of as part of the main kola

0 commit comments

Comments
 (0)