ium_444463/Jenkinsfile

16 lines
285 B
Plaintext
Raw Normal View History

2022-03-21 11:00:03 +01:00
pipeline {
agent any
stages {
2022-03-27 20:38:13 +02:00
stage('Stage 1 - checkout') {
2022-03-21 11:00:03 +01:00
steps {
2022-03-27 20:38:13 +02:00
checkout scm
}
2022-03-27 20:40:44 +02:00
}
2022-03-27 20:38:13 +02:00
stage('Stage 2 - bash script') {
steps {
./process_data.sh
2022-03-21 11:00:03 +01:00
}
}
}
}