ium_452487/Jenkinsfile

11 lines
252 B
Plaintext
Raw Normal View History

2024-03-24 17:02:18 +01:00
pipeline {
2024-04-01 20:04:28 +02:00
agent { dockerfile true }
stages {
stage('Dataset download and stats') {
steps {
sh "chmod +x -R ${env.WORKSPACE}"
sh './dataset_download_and_run.sh'
}
}
}
2024-03-20 14:28:52 +01:00
}