ium_s434700/Jenkinsfile
2021-03-27 16:34:40 +01:00

18 lines
351 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
stage('Goodbye!') {
steps {
echo 'Goodbye!'
//Zarchiwizuj wynik
touch 'output.txt'
archiveArtifacts 'output.txt'
}
}
}
}