ium_434760/Jenkinsfile

24 lines
620 B
Plaintext
Raw Normal View History

2021-03-28 19:38:58 +02:00
pipeline {
agent any
stages {
2021-03-28 22:13:52 +02:00
stage('checkout: Check out from version control') {
steps {
git 'https://git.wmi.amu.edu.pl/s434760/ium_434760.git'
}
}
stage('sh: Shell Script')
{
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh './script.sh'
}
}
}
stage('archive artifacts') {
2021-03-28 19:38:58 +02:00
steps {
2021-03-28 22:13:52 +02:00
archiveArtifacts 'output.txt'
2021-03-28 19:38:58 +02:00
}
}
}
}