ium_434784/Jenkinsfile

11 lines
261 B
Plaintext
Raw Normal View History

2021-03-28 22:19:38 +02:00
pipeline {
agent any
stages {
2021-03-28 22:28:55 +02:00
stage('checkout: Check out from version control') {
2021-03-28 22:19:38 +02:00
steps {
2021-03-28 22:28:55 +02:00
git branch: 'master',
url: 'https://git.wmi.amu.edu.pl/s434784/ium_434784'
2021-03-28 22:19:38 +02:00
}
}
}
}