ium_470618/Jenkinsfile
2023-03-23 14:37:46 +01:00

1 line
911 B
Groovy

node {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'wiktorbombola',
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'
)
])
])
}
stage('Build') {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
checkout https://git.wmi.amu.edu.pl/s470618/ium_470618.git
sh script.sh
}
}
stage('artifacts') {
steps {
echo 'saving artifacts'
archiveArtifacts 'output.txt'
}
}
}