From 1f1d33b5f4b17c62599bab452670fa7bd3edf7e2 Mon Sep 17 00:00:00 2001 From: rymnc <43716372+rymnc@users.noreply.github.com> Date: Tue, 13 Sep 2022 13:49:37 +0530 Subject: [PATCH] chore(ci): remove windows from build matrix --- ci/Jenkinsfile.prs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile.prs b/ci/Jenkinsfile.prs index 9e69d6d30..f114f020a 100644 --- a/ci/Jenkinsfile.prs +++ b/ci/Jenkinsfile.prs @@ -108,7 +108,7 @@ def getAgentLabel() { return params.AGENT_LABEL } def tokens = env.JOB_NAME.split('/') - for (platform in ['linux', 'macos', 'windows']) { + for (platform in ['linux', 'macos']) { if (tokens.contains(platform)) { return platform } } throw new Exception('No agent provided or found in job path!')