edit Jenkinsfile
This commit is contained in:
parent
34a6a3a29c
commit
1ba55b36bd
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user