test → master #66

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

6
Jenkinsfile vendored
View File

@ -36,8 +36,11 @@ pipeline {
}
steps {
sh 'debuild -us -uc -b'
sh 'mkdir -p output'
sh 'mv ../*.deb ../*.build ../*.changes ../*.buildinfo output'
script {
def files = findFiles(glob: '../hedera-web_*.changes')
def files = findFiles(glob: 'output/*.changes')
files.each { file -> env.CHANGES_FILE = file.name }
}
@ -46,7 +49,6 @@ pipeline {
variable: 'DPUT_CONFIG')
]) {
sshagent(credentials: ['jenkins-agent']) {
echo env.DPUT_CONFIG
echo env.CHANGES_FILE
sleep 86400
sh 'dput --config "$DPUT_CONFIG" verdnatura "../$CHANGES_FILE"'