This commit is contained in:
szymonj98 2022-03-23 19:53:11 +01:00
parent f3e65d93ce
commit 22e5e48595

2
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
echo 'Hello world!!!'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444386/ium_444386']]])
sh "chmod u+x ./dataset_download.sh"
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./dataset_download.sh"
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} ${CUTOFF} ./dataset_download.sh"
archiveArtifacts 'data.txt'
}
}