diff --git a/Jenkinsfile b/Jenkinsfile index 396b16d..81faa4d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ pipeline{ agent any parameters { - string(defaultValue: '100', description: 'Number of lines to cutoff', name: 'CUTOFF', trim: false) + string(defaultValue: '5', description: 'Number of lines to cutoff', name: 'CUTOFF', trim: false) } stages{ stage('Stage 1'){ @@ -16,12 +16,11 @@ pipeline{ } stage('sh: Shell Script'){ steps{ - withEnv(["CUTOFF=${params.CUTOFF}"]) { - sh "chmod 777 ./script.sh" - ./data.sh - } + withEnv(["CUTOFF=${params.CUTOFF}"]) { + sh "chmod 777 ./script.sh" + ./data.sh } - } + }} stage('Archive artifacts'){ steps{ archiveArtifacts 'test.csv'