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" +}