aboutsummaryrefslogtreecommitdiffstats
path: root/jenkinsfile.edk2
diff options
context:
space:
mode:
Diffstat (limited to 'jenkinsfile.edk2')
-rw-r--r--jenkinsfile.edk218
1 files changed, 17 insertions, 1 deletions
diff --git a/jenkinsfile.edk2 b/jenkinsfile.edk2
index 243acb2..5cb4a72 100644
--- a/jenkinsfile.edk2
+++ b/jenkinsfile.edk2
@@ -15,7 +15,23 @@ pipeline {
stage ('Prepare') {
steps {
dir ('edk2') {
- git 'git://github.com/tianocore/edk2.git'
+ checkout([
+ $class: 'GitSCM',
+ branches: [
+ [ name: '*/master' ]
+ ],
+ extensions: [
+ [
+ $class: 'CloneOption',
+ timeout: 60
+ ],[
+ $class: 'SubmoduleOption',
+ trackingSubmodules: true
+ ]
+ ],
+ userRemoteConfigs: [
+ [ url: 'git://github.com/tianocore/edk2' ]
+ ]])
}
}
}