11 lines
261 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
} |