ium_470607/lab2/Jenkinsfile_dataset_stats

16 lines
279 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 {
2021-04-11 12:43:20 +02:00
image 'kubakonieczny/ium:v1.0'
2021-04-11 13:26:49 +02:00
args ' >> stats.txt'
2021-04-11 12:37:27 +02:00
}
2021-03-28 18:33:07 +02:00
}
2021-03-28 17:41:49 +02:00
stages {
stage('archive artifacts') {
steps {
archiveArtifacts 'stats.txt'
}
}
}
}