ium_z487186/Jenkinsfile2

26 lines
514 B
Plaintext
Raw Normal View History

2023-04-20 23:19:33 +02:00
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('CopyArtifacts'){
steps {
2023-04-20 23:25:19 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s487186-create-dataset', selector: lastSuccessful()
2023-04-20 23:19:33 +02:00
}
}
stage('Script') {
steps {
2023-04-20 23:25:19 +02:00
sh './script2.sh > output.txt'
}
}
stage('ArchiveArtifacts') {
steps {
archiveArtifacts 'output.txt'
2023-04-20 23:19:33 +02:00
}
}
}
}