ium_z487179/Jenkinsfile

41 lines
1.1 KiB
Groovy

pipeline {
agent any
parameters {
string(
defaultValue: 'wojciechbatruszewicz',
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: '50',
description: 'dataset cutoff',
name: 'CUTOFF',
trim: false
)
}
stages {
stage('Run sh file') {
steps {
checkout scm
sh 'ls -l'
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'chmod +x ./datasetScript.sh'
sh './datasetScript.sh'
}
}
}
stage('Archive file') {
steps {
archiveArtifacts artifacts: 'loan_sanction_shuffled.csv', fingerprint: true
}
}
}
}