test → master #66

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

26
Jenkinsfile vendored
View File

@ -37,11 +37,29 @@ pipeline {
}
steps {
sh 'debuild -us -uc -b'
sh 'mkdir -p output'
sh 'mv ../*.deb ../*.build ../*.changes ../*.buildinfo output'
sleep 86400
//sh 'mkdir -p output'
//sh 'mv ../*.deb ../*.build ../*.changes ../*.buildinfo output'
stash includes: 'output/*', name: 'debuildOutput'
script {
def files = findFiles(glob: '../*.changes')
files.each { file -> changesFile = file.name }
}
withCredentials([sshUserPrivateKey(
credentialsId: 'jenkins-agent',
keyFileVariable: 'keyFile'
)]) {
configFileProvider([
configFile(fileId: "dput.cf",
variable: 'DPUT_CONFIG')
]) {
echo changesFile
echo 'dput --config $DPUT_CONFIG verdnatura'
sleep 86400
}
}
//stash includes: 'output/*', name: 'debuildOutput'
}
}
stage('Reprepro') {