From d902a04b67c632387d64f8eb33646c5f66fcd2db Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Thu, 27 May 2021 17:47:28 -0400 Subject: [PATCH] [jenkins] Remove centos-gcc build --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c32ff506..26aeced5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ def platforms = [:] /****************** linux builds (in docker) */ /* Each platform must have a cooresponding Dockerfile.PLATFORM in triqs/packaging */ -def dockerPlatforms = ["ubuntu-clang", "ubuntu-gcc", "centos-gcc"] +def dockerPlatforms = ["ubuntu-clang", "ubuntu-gcc"] /* .each is currently broken in jenkins */ for (int i = 0; i < dockerPlatforms.size(); i++) { def platform = dockerPlatforms[i]