diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..66b1dd2 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,15 @@ +node('packer') { + + stage 'Checkout' + + # Get the packer-centos-7 repo + + checkout scm + + # Get the ansible-playbooks repo + + stage 'Validate' + + sh '/usr/local/bin/packer validate shibboleth-appliance-vbox.json' + +}