repair jenkins

This commit is contained in:
Karol Cyganik 2024-03-26 19:51:03 +01:00
parent 1dc3f6b532
commit b24acb3c0a
1 changed files with 7 additions and 5 deletions

12
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}"
} }
} }
} }
@ -36,7 +38,7 @@ pipeline {
} }
stage('Checkout') { stage('Checkout') {
steps { steps {
git url: 'https://git.wmi.amu.edu.pl/s495715/iumKC.git' git branch: 'main', url: 'https://git.wmi.amu.edu.pl/s495715/iumKC.git'
} }
} }
} }