From b9b4b31a84a6510da0d48e863e4b2970c1ac6be0 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Mon, 18 Jul 2022 15:43:13 +0100 Subject: [PATCH] ci: run on MacOS12 (#696) (cherry picked from commit c6cdfc0a499f821d269ca35575151453408ba962) --- .ci/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index d0e954016d9..8bbb0a53873 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -79,7 +79,7 @@ pipeline { axes { axis { name 'PLATFORM' - values 'ubuntu-20.04 && immutable', 'aws && aarch64', 'windows-2016 && windows-immutable', 'windows-2022 && windows-immutable', 'darwin && orka && x86_64' + values 'ubuntu-20.04 && immutable', 'aws && aarch64', 'windows-2016 && windows-immutable', 'windows-2022 && windows-immutable', 'macos12 && x86_64' } } stages { @@ -277,7 +277,7 @@ def isCodeCoverageEnabled() { def withPackageEnv(platform, Closure body) { if (isUnix()) { - if (platform.contains('macosx')) { + if (isDarwin()) { withPackageDarwinEnv() { body() }