ium_464913/Jenkinsfile
2024-03-20 14:37:27 +01:00

12 lines
263 B
Groovy

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