ium_464913/Jenkinsfile
2024-03-20 14:43:30 +01:00

11 lines
219 B
Groovy

pipeline {
agent any
stages {
stage('Clone Repository') {
steps {
git branch: 'main', url: 'https://git.wmi.amu.edu.pl/s464913/ium_464913'
}
}
}
}