From 4fb35c36b4707a04244fa763389862c57d13aa6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 1 Feb 2023 12:13:45 +0100 Subject: [PATCH] ci: add missing qt labels for build hosts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To avoid mixing builds on upgraded and unupgraded hosts. Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.e2e | 4 +++- ci/Jenkinsfile.macos | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ci/Jenkinsfile.e2e b/ci/Jenkinsfile.e2e index 4a20458717..1230f95219 100644 --- a/ci/Jenkinsfile.e2e +++ b/ci/Jenkinsfile.e2e @@ -4,7 +4,9 @@ library 'status-jenkins-lib@v1.6.3' def isPRBuild = utils.isPRBuild() pipeline { - agent { label 'linux' } + agent { + label 'linux && x86_64 && qt-5.14.2' + } parameters { booleanParam( diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 2a5c86e4f2..b2f614b161 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -5,7 +5,7 @@ def isPRBuild = utils.isPRBuild() pipeline { agent { - label 'macos && x86_64' + label 'macos && x86_64 && qt-5.14.2' } parameters {