add parameter cutoff to parameter list

This commit is contained in:
s470618 2023-03-23 15:03:40 +01:00
parent aa91c3bf04
commit 1277d13103
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -1 +1 @@
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}", "CUTOFF=${params.CUTOFF}"]) { checkout scm sh './script.sh ${CUTOFF}' } } stage('artifacts') { echo 'saving artifacts' archiveArtifacts 'output.txt' } }
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' ), string( defaultValue: '500', description: 'Number of head lines to be taken from test file', name: 'CUTOFF', trim: false) ]) ]) } stage('Build') { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}"]) { checkout scm sh './script.sh ${CUTOFF}' } } stage('artifacts') { echo 'saving artifacts' archiveArtifacts 'output.txt' } }