Skip to content

Commit

Permalink
Acquiring util in the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Van Fleet committed Jul 27, 2016
1 parent 129bb10 commit eb605f3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ node {
checkout scm

stage 'Acquire util'

git([ url: "https://github.internet2.edu/docker/util.git",

sh 'mkdir bin'
dir('bin'){
git([ url: "https://github.internet2.edu/docker/util.git",
credentialsId: "jenkins-github-access-token" ])
sh 'mv util/bin bin'
sh 'ls'
sh 'mv bin/* .'
}

stage 'Base'

Expand Down

0 comments on commit eb605f3

Please sign in to comment.