You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2018/10/28 05:33:36 UTC

[mesos] 10/10: Removed CentOS6 build from Jenkins pipeline.

This is an automated email from the ASF dual-hosted git repository.

jieyu pushed a commit to branch 1.7.x
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit cb07b697d4fbd8143136b39dd48a64dd634c2c4f
Author: Jie Yu <yu...@gmail.com>
AuthorDate: Sat Oct 27 22:20:15 2018 -0700

    Removed CentOS6 build from Jenkins pipeline.
    
    Due to the deprecation of devtoolset-3-gcc:
    https://www.centos.org/forums/viewtopic.php?f=14&t=67978
    
    This does not build anymore. Disable it from the pipeline for the moment
    while we're figuring out if we want to continue support it or not.
    
    (cherry picked from commit 8d7c7c9ffef65c01182a4370fd4a1f32ac3ada3d)
---
 support/jenkins/Jenkinsfile-packaging-centos | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/support/jenkins/Jenkinsfile-packaging-centos b/support/jenkins/Jenkinsfile-packaging-centos
index 0ca59b9..3d87e03 100644
--- a/support/jenkins/Jenkinsfile-packaging-centos
+++ b/support/jenkins/Jenkinsfile-packaging-centos
@@ -13,14 +13,5 @@ parallel(
 
       archiveArtifacts(artifacts: '**/*.rpm', fingerprint: true)
     }
-  },
-  centos6: {
-    node(env.NODE_LABELS) {
-      checkout scm
-
-      sh("CENTOS_DISTRO=6 support/packaging/centos/build-rpm-docker.sh")
-
-      archiveArtifacts(artifacts: '**/*.rpm', fingerprint: true)
-    }
   }
 )