mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 01:06:27 +00:00
tests: Skip Moby kernel config checks on 5.x
See https://github.com/moby/moby/issues/38887 for details. Basically 5.x removed support for CFQ with f382fb0bcef4 ("block: remove legacy IO schedulers") and the Moby check still requires it. Signed-off-by: Rolf Neugebauer <rn@rneugeba.io>
This commit is contained in:
parent
500c79b970
commit
25e25da424
@ -6,6 +6,13 @@ function failed {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/check-kernel-config.sh || failed
|
/check-kernel-config.sh || failed
|
||||||
bash /check-config.sh || failed
|
|
||||||
|
# Skip moby kernel checks on 5.x kernels for now.
|
||||||
|
# See: https://github.com/moby/moby/issues/38887
|
||||||
|
kernelVersion="$(uname -r)"
|
||||||
|
kernelMajor="${kernelVersion%%.*}"
|
||||||
|
if [ "$kernelMajor" -lt 5 ]; then
|
||||||
|
bash /check-config.sh || failed
|
||||||
|
fi
|
||||||
|
|
||||||
printf "Kernel config test suite PASSED\n"
|
printf "Kernel config test suite PASSED\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user