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:21:39 UTC

[mesos] branch master updated (5a268f1 -> 8d7c7c9)

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

jieyu pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git.


    from 5a268f1  Added MESOS-9305 to 1.5.3 CHANGELOG.
     new dd87797  Used a better default for RPM builder docker image name.
     new 8d7c7c9  Removed CentOS6 build from Jenkins pipeline.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 support/jenkins/Jenkinsfile-packaging-centos      | 9 ---------
 support/packaging/centos/build-docker-rpmbuild.sh | 2 +-
 support/packaging/centos/build-rpm-docker.sh      | 2 +-
 3 files changed, 2 insertions(+), 11 deletions(-)


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

Posted by ji...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 8d7c7c9ffef65c01182a4370fd4a1f32ac3ada3d
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.
---
 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)
-    }
   }
 )


[mesos] 01/02: Used a better default for RPM builder docker image name.

Posted by ji...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit dd87797e88763677e45f4b7ad5f52438cd81cc83
Author: Jie Yu <yu...@gmail.com>
AuthorDate: Sat Oct 27 22:19:32 2018 -0700

    Used a better default for RPM builder docker image name.
---
 support/packaging/centos/build-docker-rpmbuild.sh | 2 +-
 support/packaging/centos/build-rpm-docker.sh      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/support/packaging/centos/build-docker-rpmbuild.sh b/support/packaging/centos/build-docker-rpmbuild.sh
index 1fdd5c7..9c01aaf 100755
--- a/support/packaging/centos/build-docker-rpmbuild.sh
+++ b/support/packaging/centos/build-docker-rpmbuild.sh
@@ -8,7 +8,7 @@ set -o errexit -o nounset -o pipefail -o verbose
 CENTOS_DIR="$(cd "$(dirname "$0")"; pwd -P)"
 
 CENTOS_DISTRO=${CENTOS_DISTRO:-"7"}
-DOCKER_IMAGE=${DOCKER_IMAGE:-"mesos/mesos-centos-rpmbuild"}
+DOCKER_IMAGE=${DOCKER_IMAGE:-"mesos/mesos-centos${CENTOS_DISTRO}-rpmbuild"}
 DOCKER_IMAGE_TAG=${DOCKER_IMAGE_TAG:-"latest"}
 
 if ! [ -x "$(command -v docker)" ]; then
diff --git a/support/packaging/centos/build-rpm-docker.sh b/support/packaging/centos/build-rpm-docker.sh
index e7d9c3f..9bad6d8 100755
--- a/support/packaging/centos/build-rpm-docker.sh
+++ b/support/packaging/centos/build-rpm-docker.sh
@@ -8,7 +8,7 @@ CENTOS_DIR="$(cd "$(dirname "$0")"; pwd -P)"
 SOURCE_DIR="$(cd "${CENTOS_DIR}/../../.."; pwd -P)"
 
 CENTOS_DISTRO=${CENTOS_DISTRO:-"7"}
-DOCKER_IMAGE=${DOCKER_IMAGE:-"mesos/mesos-centos-rpmbuild"}
+DOCKER_IMAGE=${DOCKER_IMAGE:-"mesos/mesos-centos${CENTOS_DISTRO}-rpmbuild"}
 DOCKER_IMAGE_TAG=${DOCKER_IMAGE_TAG:-"latest"}
 
 if ! [ -x "$(command -v docker)" ]; then