This commit is contained in:
s444417 2022-03-24 18:34:48 +01:00
parent a50687a7ec
commit 7a2ebe1925

4
Jenkinsfile vendored
View File

@ -1,6 +1,6 @@
pipeline {
agent any
parameters([
parameters {
string(
defaultValue: 'mikolaj2',
description: 'Kaggle username',
@ -17,12 +17,12 @@ pipeline {
description: 'Value for head command',
name: 'CUTOFF'
)
])
environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
KAGGLE_KEY="$params.KAGGLE_KEY"
CUTOFF="$params.CUTOFF"
}
}
stages {
stage("Check out from version control") {
steps {