From 6e7e95d8037d72c5a9c5acf9d6afd541837607b6 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Mon, 11 Jan 2021 19:14:45 +0100 Subject: Jenkins: Kernel: instead of 'git clone' the source use the tarball --- docker/Dockerfile | 6 +++++- packages/linux-kernel/Jenkinsfile | 24 ++++++++++++++++-------- 2 files changed, 21 insertions(+), 9 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 780cb190..1ca25310 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -174,8 +174,12 @@ RUN apt-get update && apt-get install -y \ librdkafka-dev \ libnetfilter-log-dev -# Packages needed for kernel +# Packages needed for Linux Kernel +# gnupg2 and jq is required by Jenkins for the TAR verification RUN apt-get update && apt-get install -y \ + gnupg2 \ + rsync \ + jq \ libmnl-dev \ kernel-package \ libncurses5-dev \ diff --git a/packages/linux-kernel/Jenkinsfile b/packages/linux-kernel/Jenkinsfile index fb5686dc..4d34dcba 100644 --- a/packages/linux-kernel/Jenkinsfile +++ b/packages/linux-kernel/Jenkinsfile @@ -87,13 +87,21 @@ pipeline { } } steps { - dir(env.BASE_DIR + '/linux') { - checkout([$class: 'GitSCM', - doGenerateSubmoduleConfigurations: false, - extensions: [[$class: 'CleanCheckout'], - [$class: 'CloneOption', depth: 1, noTags: false, reference: '', shallow: true]], - branches: [[name: 'v4.19.165' ]], - userRemoteConfigs: [[credentialsId: 'GitHub-vyosbot', url: 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git']]]) + script { + dir(env.BASE_DIR) { + sh ''' + KERNEL_VER=\$(cat ../../data/defaults.json | jq -r .kernel_version) + gpg2 --locate-keys torvalds@kernel.org gregkh@kernel.org + curl -OL https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VER}.tar.xz + curl -OL https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL_VER}.tar.sign + xz -cd linux-${KERNEL_VER}.tar.xz | gpg2 --verify linux-${KERNEL_VER}.tar.sign - + if [ $? -ne 0 ]; then + exit 1 + fi + tar xf linux-${KERNEL_VER}.tar.xz + ln -s linux-${KERNEL_VER} linux + ''' + } } } } @@ -265,7 +273,7 @@ pipeline { VYOS_REPO_PATH += 'vyos/' def SSH_OPTS = '-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=ERROR' - def SSH_REMOTE = 'khagen@10.217.48.113' + def SSH_REMOTE = env.DOWNLOADS_VYOS_IO_HOST // defined as global variable echo "Uploading package(s) and updating package(s) in the repository ..." -- cgit v1.2.3