From 0952a690a56cd6953716da72045c508eca5be1cd Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Thu, 4 Jul 2024 19:19:30 +0200 Subject: [PATCH] ci: refs #7643 Debuild image fixes --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 960e15ea..85b92d87 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,13 +32,12 @@ pipeline { image 'registry.verdnatura.es/debuild:2.23.4-vn4' registryUrl 'https://registry.verdnatura.es/' registryCredentialsId 'docker-registry' - args '-u root' } } steps { sh 'debuild -us -uc -b' sh 'mkdir -p output' - sh 'cp ../*.deb output' + sh 'mv ../*.deb ../*.build ../*.buildinfo ../*.changes output' sh 'sleep 86400' } }