repair jenkins

This commit is contained in:
Karol Cyganik 2024-03-26 19:51:03 +01:00
parent 1dc3f6b532
commit d2b4cfc655

10
Jenkinsfile vendored
View File

@ -20,11 +20,13 @@ pipeline {
steps { steps {
script { script {
def datasetDir = 'football-semantic-segmentation' def datasetDir = 'football-semantic-segmentation'
sh "mkdir ${datasetDir}" if (!fileExists(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}"
} }
} }
} }