Skip to content

Commit

Permalink
Replicating download inside Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Van Fleet committed Aug 2, 2016
1 parent cff00a7 commit 399fb2c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ node {
sh 'mv bin/* .'
}

stage 'Acquire conftree'

sh 'mkdir -p root'
dir('root'){
git([ url: "https://github.internet2.edu/docker/shib-idp-conftree.git",
branch: "test", credentialsId: "jenkins-github-access-token" ])
}

stage 'Tests'

sh 'bin/test.sh'
Expand Down

0 comments on commit 399fb2c

Please sign in to comment.