Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .cci.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@ cosaPod(buildroot: true) {
// hack to satisfy golang compiler wanting to cache things
shwrap("mkdir cache")
withEnv(["XDG_CACHE_HOME=${env.WORKSPACE}/cache"]) {
fcosBuild(make: true, skipKola: true)
// freeze kernel to 5.6.7 for now to avoid a regression in loopback
// code which interferes with blackbox testing
// https://bugs.archlinux.org/task/66526
shwrap("""
mkdir -p /srv/fcos && cd /srv/fcos
cosa init https://github.com/coreos/fedora-coreos-config
mkdir -p overrides/rpm && cd overrides/rpm
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
""")
fcosBuild(skipInit: true, make: true, skipKola: true)
}

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