Skip to content

Commit

Permalink
Adjust git checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
credman committed Jan 13, 2022
1 parent a40d3e1 commit 30ae97a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def repo = 'git@github.com:Internet2/grouper.git'
def repo = 'https://github.com/Internet2/grouper.git'
def jdk_id = 'Corretto-JDK8'
def maven_id = 'Maven-3.8.4'
def gpg_cred_id = 'grouper-gpg-key'
Expand All @@ -24,8 +24,9 @@ node('docker') {
$class: 'GitSCM',
branches: [[name: grouper_src_branch]],
extensions: [
[$class: 'LocalBranch'], [$class: 'WipeWorkspace'],
[$class: 'CloneOption', depth: 1, noTags: false, reference: '', shallow: true],
[$class: 'LocalBranch'],
[$class: 'WipeWorkspace'],
[$class: 'CloneOption', noTags: false, shallow: true],
],
userRemoteConfigs: [[url: repo]]
]
Expand Down

0 comments on commit 30ae97a

Please sign in to comment.