ium_444463/Jenkinsfile
Mikołaj Pokrywka 9001fd1671 wip
2022-03-27 20:40:44 +02:00

16 lines
285 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1 - checkout') {
steps {
checkout scm
}
}
stage('Stage 2 - bash script') {
steps {
./process_data.sh
}
}
}
}