No parameters test

This commit is contained in:
s478841 2022-03-26 17:47:15 +01:00
parent b4d4177068
commit d84f6f6f43

33
Jenkinsfile vendored
View File

@ -1,21 +1,20 @@
node {
stage('Preparation') {
properties ([
parameters([
string(
defaultValue:'mateuszogrodowczyk',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
),
password(
defaultValue: '',
description: 'Kaggle access token retrieved from kaggle.json file - https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
])
])
}
// stage('Preparation') {
// properties ([
// parameters([
// string(
// defaultValue:'mateuszogrodowczyk',
// description: 'Kaggle username',
// name: 'KAGGLE_USERNAME',
// trim: false
// ),
// password(
// description: 'Kaggle access token retrieved from kaggle.json file - https://github.com/Kaggle/kaggle-api#api-credentials',
// name: 'KAGGLE_KEY'
// )
// ])
// ])
// }
stage('Install depends.') {
sh 'pip install --user -r requirements.txt'