repair jenkins
This commit is contained in:
parent
1dc3f6b532
commit
d2b4cfc655
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@ -20,11 +20,13 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
def datasetDir = 'football-semantic-segmentation'
|
def datasetDir = 'football-semantic-segmentation'
|
||||||
|
if (!fileExists(datasetDir)) {
|
||||||
sh "mkdir ${datasetDir}"
|
sh "mkdir ${datasetDir}"
|
||||||
|
}
|
||||||
|
|
||||||
// Download the dataset
|
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
||||||
withCredentials([string(value: params.KAGGLE_KEY, variable: 'KAGGLE_API_TOKEN')]) {
|
"KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
|
||||||
sh "KAGGLE_CONFIG_DIR=. kaggle datasets download sadhliroomyprime/football-semantic-segmentation -p ${datasetDir}"
|
sh "kaggle datasets download sadhliroomyprime/football-semantic-segmentation -p ${datasetDir}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user