mlworkshops/Jenkinsfile
Tomasz Ziętkiewicz 62129cfb9c
All checks were successful
multibranch-hello-world/pipeline/head This commit looks good
Add archiving artifacts
2021-04-19 11:02:16 +02:00

15 lines
247 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
sh 'make --version > make.log'
sh 'sclite --help || true'
echo "Experimenting!"
archiveArtifacts 'make.log'
}
}
}
}