12 lines
203 B
Groovy
12 lines
203 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('checkout: Check out from version control') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s416122/s416122-mlworkshops'
|
|
}
|
|
}
|
|
}
|
|
}
|