ium_444463/Jenkinsfile
Mikołaj Pokrywka 9c9ac6a1a2 wip
2022-03-27 20:47:04 +02:00

16 lines
468 B
Groovy

pipeline {
agent any
stages {
stage('checkout: Check out from version control') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444463', url: 'https://git.wmi.amu.edu.pl/s444463/ium_444463.git']]])
}
}
stage('bash script') {
steps {
./process_data.sh
}
}
}
}