test → master #66

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

5
Jenkinsfile vendored
View File

@ -53,9 +53,10 @@ pipeline {
steps {
unstash 'debuildOutput'
script {
def debPath = sh(script: 'ls output/*.deb', returnStdout: true).trim()
debFile = new File(debPath).getName()
def files = findFiles(glob: 'output/*.deb')
files.each { file -> debFile = file.name }
}
echo debFile
withCredentials([sshUserPrivateKey(
credentialsId: 'jenkins-agent',