ium_444463/Jenkinsfile

16 lines
468 B
Plaintext
Raw Normal View History

2022-03-21 11:00:03 +01:00
pipeline {
agent any
stages {
2022-03-27 20:47:04 +02:00
stage('checkout: Check out from version control') {
2022-03-21 11:00:03 +01:00
steps {
2022-03-27 20:47:04 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444463', url: 'https://git.wmi.amu.edu.pl/s444463/ium_444463.git']]])
2022-03-27 20:38:13 +02:00
}
2022-03-27 20:40:44 +02:00
}
2022-03-27 20:47:04 +02:00
stage('bash script') {
2022-03-27 20:38:13 +02:00
steps {
./process_data.sh
2022-03-21 11:00:03 +01:00
}
}
}
}