ium_444507/Jenkinsfile
2022-03-26 12:15:30 +01:00

34 lines
930 B
Groovy

pipeline {
agent any
parameters {
string (
defaultValue: 'heatedboss2',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
),
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']]])
}
}
stage('Script') {
steps {
script {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}","KAGGLE_KEY=${params.KAGGLE_KEY}" ])
{
sh 'ls -la'
sh './download.sh'
}
}
}
}
}
}