This commit is contained in:
Norbert Walkowiak 2023-04-15 11:07:01 +02:00
parent 04808cb49c
commit a0ddab86e3

10
Jenkinsfile vendored
View File

@ -16,11 +16,17 @@ node {
])
])
}
stage('Build') {
// Run the maven build
stage('Kaggle') {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
}
}
stages {
stage('checkout') {
steps {
git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487175/ium_z487175.git'
}
}
}
}