git clone

This commit is contained in:
szymonj98 2022-03-21 22:19:34 +01:00
parent a72f064150
commit c7474eb231

4
Jenkinsfile vendored
View File

@ -2,7 +2,7 @@ pipeline {
agent any
parameters {
string(
defaultValue: 'Szymon Jadczak',
defaultValue: 'szymonjadczak',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
@ -22,7 +22,7 @@ pipeline {
steps {
echo 'Hello world!!!'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444386/ium_444386']]])
sh: "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} ./download_dataset.sh"
sh: "./download_dataset.sh"
}
}
}