File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,16 @@ cosaPod(buildroot: true) {
6
6
// hack to satisfy golang compiler wanting to cache things
7
7
shwrap("mkdir cache")
8
8
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)
10
19
}
11
20
12
21
// we run the blackbox tests separately instead of as part of the main kola
You can’t perform that action at this time.
0 commit comments