ium_470607/lab2/Jenkinsfile_dataset_stats
2021-04-11 13:30:42 +02:00

15 lines
246 B
Plaintext

pipeline {
agent {
docker {
image 'kubakonieczny/ium:v1.0'
}
}
stages {
stage('archive artifacts') {
steps {
archiveArtifacts 'stats.txt'
}
}
}
}