12 lines
332 B
Groovy
12 lines
332 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Dataset download and stats') {
|
|
steps {
|
|
sh "export KAGGLE_CONFIG_DIR='${env.WORKSPACE}/kaggle_config/'"
|
|
sh "chmod +x -R ${env.WORKSPACE}"
|
|
sh './dataset_download_and_run.sh'
|
|
}
|
|
}
|
|
}
|
|
} |