From 1a63d0854c3e33d8b99869c4d38040b56c54710c Mon Sep 17 00:00:00 2001 From: Dylan Simon Date: Thu, 3 Jun 2021 00:59:04 -0400 Subject: [PATCH] [jenkins] more explicit node allocation --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 75a55903..91d627b6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ def dockerPlatforms = ["ubuntu-clang", "ubuntu-gcc", "sanitize"] /* .each is currently broken in jenkins */ for (int i = 0; i < dockerPlatforms.size(); i++) { def platform = dockerPlatforms[i] - platforms[platform] = { -> node('docker') { + platforms[platform] = { -> node('linux && docker && triqs') { stage(platform) { timeout(time: 1, unit: 'HOURS') { ansiColor('xterm') { checkout scm /* construct a Dockerfile for this base */ @@ -110,7 +110,7 @@ for (int i = 0; i < osxPlatforms.size(); i++) { def error = null try { parallel platforms - if (keepInstall) { node("docker") { + if (keepInstall) { node('linux && docker && triqs') { /* Publish results */ stage("publish") { timeout(time: 5, unit: 'MINUTES') { def commit = sh(returnStdout: true, script: "git rev-parse HEAD").trim()