ium_444463/Jenkinsfile
Mikołaj Pokrywka a749edbe0c wip
2022-03-27 20:49:02 +02:00

16 lines
473 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 {
sh "./process_data.sh"
}
}
}
}