This commit is contained in:
Mikołaj Pokrywka 2022-03-27 20:38:13 +02:00
parent 21879ae350
commit a042a22bfe

9
Jenkinsfile vendored
View File

@ -1,9 +1,14 @@
pipeline {
agent any
stages {
stage('Stage 1') {
stage('Stage 1 - checkout') {
steps {
echo 'Hello world!'
checkout scm
}
},
stage('Stage 2 - bash script') {
steps {
./process_data.sh
}
}
}