checkout in jenkinsfile

This commit is contained in:
Maciej Czajka 2022-03-25 19:27:33 +01:00
parent 258f165d55
commit bf3c858688

6
Jenkinsfile vendored
View File

@ -25,5 +25,11 @@ pipeline {
archiveArtifacts 'output.txt'
}
}
stage('Checkout'){
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444356', url: 'https://git.wmi.amu.edu.pl/s444356/ium_444356.git']]])
}
}
}
}