From 980ee45d0c1f6321e178160584bf8324ab7e9df8 Mon Sep 17 00:00:00 2001 From: Olav Philipp Henschel Date: Fri, 12 May 2017 15:06:02 -0300 Subject: [PATCH] Add Jenkinsfile This allows monitoring this repository for changes and executing builds automatically. --- Jenkinsfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..7906419 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,8 @@ +node('master') { + dir('infrastructure') { + checkout scm + } + pipeline = load 'infrastructure/pipeline/build.groovy' +} + +pipeline.execute()