Skip to content
Permalink
00438ace2d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (10 sloc) 331 Bytes
#!groovy
node('packer') {
stage 'Checkout'
checkout scm
stage 'Acquire ansible-playbooks'
git([ url: "https://github.internet2.edu/docker/ansible-playbooks.git",
credentialsId: "jenkins-github-access-token" ])
stage 'Validate'
sh '/usr/local/bin/packer validate shibboleth-appliance-vbox.json'
}