12 lines
263 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
} |