From 0e545d1d9818bcfb891f87c78dce6b2a944a783e Mon Sep 17 00:00:00 2001 From: Mason Packard Date: Fri, 19 Aug 2016 13:30:17 -0400 Subject: [PATCH] Add basic Jenkins pipeline. --- Jenkinsfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Jenkinsfile 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' + +}