Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Freeze kernel at 5.6.7 due to loop regression breaking blackbox test #976

Merged
merged 1 commit into from
May 8, 2020
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