Skip to content

Commit

Permalink
[#776] test
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdoker18 committed Feb 6, 2019
1 parent dbe7130 commit 8c23a5a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,14 @@ pipeline {
}
stage('Build Agent Docker Image') {
steps {
sh "docker build ${Globals.dockerCacheArg} -t legion-docker-agent:${env.BUILD_NUMBER} -f pipeline.Dockerfile ."
withCredentials([
file(credentialsId: "vault-legion-test.epm.kharlamov.biz", variable: 'vault')]) {
sh "echo kek"
sh "echo ${vault}"
sh "cat ${vault}"
sh "exit 1"
sh "docker build ${Globals.dockerCacheArg} -t legion-docker-agent:${env.BUILD_NUMBER} -f pipeline.Dockerfile ."
}
}
}
stage('Build dependencies') {
Expand Down

0 comments on commit 8c23a5a

Please sign in to comment.