From 8a569fdc639b63d54faebd0d1823d4f9d6354cd8 Mon Sep 17 00:00:00 2001 From: Endolf Date: Thu, 24 May 2018 19:28:58 +0100 Subject: [PATCH] Only run build on linux as windows doesn't like shell scripts.... --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 21f775a..10433d0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -51,7 +51,9 @@ pipeline { } } stage('Build') { - agent any + agent { + label "linux" + } steps { unstash 'windows-natives' unstash 'osx-natives'