Skip to content
Permalink
5f25cff27b
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
20 lines (13 sloc) 395 Bytes
#!groovy
node('packer') {
stage 'Checkout'
checkout scm
stage 'Acquire ansible-playbooks'
sh 'mkdir -p ansible-playbooks'
dir('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'
}