ium_444463/Jenkinsfile
Mikołaj Pokrywka a042a22bfe wip
2022-03-27 20:38:13 +02:00

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
}
}
}
}