From 61e45b1e3650ee80f0e4182f11810b3b60d5edcd Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Fri, 17 May 2024 17:45:53 -0400 Subject: [PATCH] [jenkins] Disable intel build due to boost version issue --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 55c22a3..6ed7d3b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,8 @@ def platforms = [:] /****************** linux builds (in docker) */ /* Each platform must have a corresponding Dockerfile.PLATFORM in triqs/packaging */ -def dockerPlatforms = ["ubuntu-clang", "ubuntu-gcc", "ubuntu-intel", "sanitize"] +/* Skip "ubuntu-intel", fails due to old boost version using std::unary_function in boost::hash */ +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]