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