summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-08-15 21:38:40 +0200
committerChristian Poessinger <christian@poessinger.com>2020-08-15 22:40:36 +0200
commit5bc3fe476f8da89bbf5725295aad81679611d9fc (patch)
tree2de01fa8366069079260dd49a5723cdef5f6fa2c
parent59b3e53ff2d4a38f96dca9407671891ff6ae7fe2 (diff)
downloadvyos-build-5bc3fe476f8da89bbf5725295aad81679611d9fc.tar.gz
vyos-build-5bc3fe476f8da89bbf5725295aad81679611d9fc.zip
Kernel: T2797: build WireGuard tools on outdated debhelper version
-rw-r--r--packages/linux-kernel/Jenkinsfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/linux-kernel/Jenkinsfile b/packages/linux-kernel/Jenkinsfile
index f3554054..febed232 100644
--- a/packages/linux-kernel/Jenkinsfile
+++ b/packages/linux-kernel/Jenkinsfile
@@ -180,7 +180,10 @@ pipeline {
// In Debian wireguard repo commit edb7124c866ea0e506278c311fc82dfde1f957be
// they decided to split source code of the kernel part and tools
dir('wireguard') {
- sh "dpkg-buildpackage -b -us -uc -tc"
+ sh """
+ echo 9 > debian/compat
+ dpkg-buildpackage -b -us -uc -tc -d
+ """
}
sh "./build-wireguard-modules.sh"
}