Skip to content

Commit

Permalink
[jenkins] Disable intel build due to boost version issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Wentzell committed May 17, 2024
1 parent 1af5184 commit 61e45b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 61e45b1

Please sign in to comment.