You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/01/15 12:40:28 UTC

[couchdb] 01/01: Remove CI support for Ubuntu 16.04

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

kocolosk pushed a commit to branch drop-xenial
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 2e34d33740a98bdf66e45bfd2e1fa956f421de46
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Sat Jan 15 07:40:12 2022 -0500

    Remove CI support for Ubuntu 16.04
---
 build-aux/Jenkinsfile.full | 45 ---------------------------------------------
 1 file changed, 45 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 20b8989..0bc1dbf 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -288,51 +288,6 @@ pipeline {
           } // post
         } // stage
 
-        stage('Ubuntu Xenial') {
-          agent {
-            docker {
-              image 'apache/couchdbci-ubuntu:xenial-erlang-21.3.8.17-1'
-              label 'docker'
-              args "${DOCKER_ARGS}"
-              registryUrl 'https://docker.io/'
-              registryCredentialsId 'dockerhub_creds'
-            }
-          }
-          environment {
-            platform = 'xenial'
-            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('Ubuntu Bionic') {
           agent {
             docker {