From 9a3fa5667cc1ba3791536bce550d31b4c90fb78d Mon Sep 17 00:00:00 2001 From: Martin Nowak Date: Sun, 26 Feb 2017 17:38:25 +0100 Subject: [PATCH] adding Jenkinsfile to hook with new ci2.dawg.eu instance - should transfer the ownership of the ci repo to dlang/ci --- Jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000000..9fe9337fb4 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,11 @@ +#!/bin/env groovy + +node { + stage ("Load CI Scripts") { + dir ("dlang/ci") { + git "https://github.com/Dicebot/dlangci.git" + } + } + + load "dlang/ci/pipeline.groovy" +}