test → master #66

Merged
guillermo merged 70 commits from test into master 2024-07-23 06:23:47 +00:00
1 changed files with 6 additions and 7 deletions
Showing only changes of commit 47acbb7ebb - Show all commits

13
Jenkinsfile vendored
View File

@ -36,20 +36,19 @@ pipeline {
}
steps {
sh 'debuild -us -uc -b'
script {
def files = findFiles(glob: '../hedera-web_*.changes')
files.each { file -> env.CHANGES_FILE = file.name }
}
sshagent(credentials: ['jenkins-agent']) {
configFileProvider([
configFile(fileId: "dput.cf",
variable: 'DPUT_CONFIG')
]) {
configFileProvider([
configFile(fileId: "dput.cf",
variable: 'DPUT_CONFIG')
]) {
sshagent(credentials: ['jenkins-agent']) {
echo env.DPUT_CONFIG
echo env.CHANGES_FILE
sh 'dput --config "$DPUT_CONFIG" verdnatura "$CHANGES_FILE"'
sh 'dput --config "$DPUT_CONFIG" verdnatura "../hedera-web_*.changes"'
}
}
}