refs #7593 Jenkinsfile test
gitea/vn-host/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2025-02-04 14:52:58 +01:00
parent 3155acc346
commit 5f608fc12e
1 changed files with 6 additions and 10 deletions

16
Jenkinsfile vendored
View File

@ -25,25 +25,21 @@ pipeline {
}
steps {
sh 'debuild -us -uc -b'
/*
sh 'mkdir -p debuild'
sh 'mv ../vn-host_* debuild'
sh 'mv ../vn-apt-source_* debuild'
script {
def files = findFiles(glob: 'debuild/*.changes')
files.each { file -> env.CHANGES_FILE = file.name }
}
configFileProvider([
configFile(fileId: "dput.cf", variable: 'DPUT_CONFIG')
]) {
script {
def files = findFiles(glob: 'debuild/*.changes')
files.each { file ->
env.CHANGES_FILE = file.name
sshagent(credentials: ['jenkins-agent']) {
sh 'dput --config "$DPUT_CONFIG" verdnatura "debuild/$CHANGES_FILE"'
}
}
sshagent(credentials: ['jenkins-agent']) {
sh 'dput --config "$DPUT_CONFIG" verdnatura "debuild/$CHANGES_FILE"'
}
}
*/
}
}
}