summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBessenyei Balázs Donát <bessbd@users.noreply.github.com>2021-03-19 13:41:14 +0100
committerGitHub <noreply@github.com>2021-03-19 13:41:14 +0100
commitf0471ba6b23e57c95417cd9f26839ceb5ea6670a (patch)
tree13b3d76a29407963b48d94eebc83b0e7a934ec1f
parent4f0574d1b2cbbd64501ec0468ad37b553a8a86de (diff)
downloadcouchdb-f0471ba6b23e57c95417cd9f26839ceb5ea6670a.tar.gz
Remove CentOS 6 from CI (#3439)
-rw-r--r--build-aux/Jenkinsfile.full46
1 files changed, 0 insertions, 46 deletions
diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 2a4692c34..76c5a0d03 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -194,49 +194,6 @@ pipeline {
} // post
} // stage macOS
- stage('CentOS 6') {
- agent {
- docker {
- image 'couchdbdev/centos-6-erlang-20.3.8.25-1:latest'
- label 'docker'
- args "${DOCKER_ARGS}"
- }
- }
- environment {
- platform = 'centos6'
- sm_ver = '1.8.5'
- }
- stages {
- stage('Build from tarball & test') {
- steps {
- unstash 'tarball'
- sh( script: build_and_test )
- }
- post {
- always {
- junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml'
- }
- }
- }
- stage('Build CouchDB packages') {
- steps {
- sh( script: make_packages )
- sh( script: cleanup_and_save )
- }
- post {
- success {
- archiveArtifacts artifacts: 'pkgs/**', fingerprint: true
- }
- }
- }
- } // stages
- post {
- cleanup {
- sh 'rm -rf ${WORKSPACE}/*'
- }
- } // post
- } // stage
-
stage('CentOS 7') {
agent {
docker {
@@ -743,10 +700,8 @@ pipeline {
echo 'Building CentOS repos...'
sh '''
- cp js/centos-6/*rpm pkgs/centos6
cp js/centos-7/*rpm pkgs/centos7
cp js/centos-8/*rpm pkgs/centos8
- cd pkgs/centos6 && createrepo --database .
cd ../centos7 && createrepo --database .
cd ../centos8 && createrepo --database .
'''
@@ -755,7 +710,6 @@ pipeline {
sh '''
mv couchdb-pkg/repo/pool $BRANCH_NAME/debian
mv couchdb-pkg/repo/dists $BRANCH_NAME/debian
- mv pkgs/centos6/* $BRANCH_NAME/el6
mv pkgs/centos7/* $BRANCH_NAME/el7
mv pkgs/centos8/* $BRANCH_NAME/el8
mv apache-couchdb-*.tar.gz $BRANCH_NAME/source