paramsfix3
This commit is contained in:
parent
2952f2d1c1
commit
d200b7af20
21
Jenkinsfile
vendored
21
Jenkinsfile
vendored
@ -1,29 +1,32 @@
|
||||
pipeline {
|
||||
agent any
|
||||
parameters ([
|
||||
string (
|
||||
parameters {
|
||||
string(
|
||||
defaultValue: 'heatedboss2',
|
||||
description: 'Kaggle username',
|
||||
name: 'KAGGLE_USERNAME',
|
||||
trim: false
|
||||
),
|
||||
password (
|
||||
)
|
||||
password(
|
||||
defaultValue: '',
|
||||
description: 'Kaggle token',
|
||||
name: 'KAGGLE_KEY'
|
||||
)
|
||||
])
|
||||
)
|
||||
}
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: '8b8d54ee-f03c-4980-90b1-959faa97082b', url: 'https://git.wmi.amu.edu.pl/s444507/ium_444507.git']]])
|
||||
checkout([$class: 'GitSCM', branches: [
|
||||
[name: '*/master']
|
||||
], extensions: [], userRemoteConfigs: [
|
||||
[credentialsId: '8b8d54ee-f03c-4980-90b1-959faa97082b', url: 'https://git.wmi.amu.edu.pl/s444507/ium_444507.git']
|
||||
]])
|
||||
}
|
||||
}
|
||||
stage('Script') {
|
||||
steps {
|
||||
script {
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}","KAGGLE_KEY=${params.KAGGLE_KEY}" ])
|
||||
{
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
|
||||
sh 'ls -la'
|
||||
sh './download.sh'
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user