From: Patrick Donnelly Date: Tue, 7 Aug 2018 01:33:40 +0000 (-0700) Subject: qa: use recent kernel to kernel build testing X-Git-Tag: v14.0.1~576^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f0fe0936e64dde2be7139340489960b9635316c2;p=ceph.git qa: use recent kernel to kernel build testing Fixes: http://tracker.ceph.com/issues/24679 Signed-off-by: Patrick Donnelly --- diff --git a/qa/cephfs/begin.yaml b/qa/cephfs/begin.yaml index 58099a3a4dd3..5cd9242e9ebd 100644 --- a/qa/cephfs/begin.yaml +++ b/qa/cephfs/begin.yaml @@ -3,4 +3,8 @@ tasks: extra_packages: rpm: ['python3-cephfs'] deb: ['python3-cephfs', 'cephfs-shell'] + # For kernel_untar_build workunit + extra_system_packages: + deb: ['bison', 'flex', 'libelf-dev', 'libssl-dev'] + rpm: ['bison', 'flex', 'elfutils-libelf-devel', 'openssl-devel'] - ceph: diff --git a/qa/workunits/kernel_untar_build.sh b/qa/workunits/kernel_untar_build.sh index 1182aafc1660..fbab4aaebc99 100755 --- a/qa/workunits/kernel_untar_build.sh +++ b/qa/workunits/kernel_untar_build.sh @@ -2,11 +2,11 @@ set -e -wget -q http://download.ceph.com/qa/linux-4.0.5.tar.xz +wget -O linux.tar.gz http://download.ceph.com/qa/linux-4.17.tar.gz mkdir t cd t -tar Jxvf ../linux*.xz +tar xzf ../linux.tar.gz cd linux* make defconfig make -j`grep -c processor /proc/cpuinfo`