16 lines
286 B
Groovy
16 lines
286 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Stage 1 - checkout') {
|
|
steps {
|
|
checkout scm
|
|
}
|
|
},
|
|
stage('Stage 2 - bash script') {
|
|
steps {
|
|
./process_data.sh
|
|
}
|
|
}
|
|
}
|
|
}
|