11 lines
252 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
} |