ium_434784/Jenkinsfile
2021-03-28 22:28:55 +02:00

11 lines
261 B
Groovy

pipeline {
agent any
stages {
stage('checkout: Check out from version control') {
steps {
git branch: 'master',
url: 'https://git.wmi.amu.edu.pl/s434784/ium_434784'
}
}
}
}