From 7c2bfbbab1898196774538c0160d7d9954329854 Mon Sep 17 00:00:00 2001 From: Tom Bettany Date: Wed, 3 Jul 2019 11:09:26 +0100 Subject: [PATCH] CI: Transition to new-style Jenkinsfile Use the new Jenkins functions to auto-build and deploy. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cbbc930..9156e25 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,9 @@ #!/usr/bin/env groovy @Library('kanolib') -import build_deb_pkg +import autobuild_repo_pkg stage ('Build') { - build_deb_pkg 'make-snake', env.BRANCH_NAME, 'scratch' + autobuild_repo_pkg 'make-snake' }