ium_470607/lab2/Jenkinsfile_dataset_stats

22 lines
401 B
Plaintext
Raw Normal View History

2021-03-28 17:41:49 +02:00
pipeline {
2021-04-11 12:37:27 +02:00
agent {
docker {
image kubakonieczny/ium
}
2021-03-28 18:33:07 +02:00
}
2021-03-28 17:41:49 +02:00
stages {
2021-04-11 12:37:27 +02:00
stage('docker') {
2021-03-28 17:41:49 +02:00
steps {
2021-04-11 12:37:27 +02:00
sh '''
./script.sh >> stats.txt
'''
2021-03-28 17:41:49 +02:00
}
}
stage('archive artifacts') {
steps {
archiveArtifacts 'stats.txt'
}
}
}
}