ium_444465/Jenkinsfile

31 lines
925 B
Plaintext
Raw Normal View History

2022-03-27 16:57:09 +02:00
pipeline {
2022-04-03 19:17:24 +02:00
agent {
dockerfile true
}
2022-03-27 16:57:09 +02:00
parameters {
string (
defaultValue: 'andrzejpreibisz',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
)
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
string(
defaultValue: "10000",
description: 'Use CUTOFF random examples from dataset',
name: 'CUTOFF'
)
2022-03-21 11:05:30 +01:00
}
2022-03-27 16:57:09 +02:00
stages {
stage("Git clone") {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444465', url: 'https://git.wmi.amu.edu.pl/s444465/ium_444465']]])
}
}
2022-03-21 11:05:30 +01:00
}
2022-03-27 16:57:09 +02:00
}