ium_452487/Jenkinsfile
2024-04-01 20:04:28 +02:00

11 lines
252 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Dataset download and stats') {
steps {
sh "chmod +x -R ${env.WORKSPACE}"
sh './dataset_download_and_run.sh'
}
}
}
}