From a8c09f69d03cb29c56a33025d3af75663a4261aa Mon Sep 17 00:00:00 2001 From: "Xiaodong, Li" Date: Thu, 19 Dec 2024 09:03:31 -0800 Subject: [PATCH] Extend avx512 win job with Intel oneAPI (#337) The reason for the change is to mitigate the failure during compiling when using Intel oneAPI product. The check from buildbot will prevent the commit to be merged if the job failed. --------- Signed-off-by: Xiaodong Li --- buildbot/osuosl/master/config/builders.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildbot/osuosl/master/config/builders.py b/buildbot/osuosl/master/config/builders.py index 59424ff1..c9427532 100644 --- a/buildbot/osuosl/master/config/builders.py +++ b/buildbot/osuosl/master/config/builders.py @@ -910,6 +910,8 @@ extra_cmake_args=[ "-DCMAKE_C_FLAGS='-march=cascadelake'", "-DCMAKE_CXX_FLAGS='-march=cascadelake'", + "-DCMAKE_C_COMPILER=icx.EXE", + "-DMAKE_CXX_COMPILER=icx.EXE", "-DLLVM_ENABLE_RUNTIMES=compiler-rt", "-DCOMPILER_RT_BUILD_SANITIZERS=OFF", "-DCOMPILER_RT_BUILD_ORC=OFF",