You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2022/09/10 15:55:39 UTC

[couchdb] 03/03: Remove commented out Jenksfile section

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

vatamane pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 5f86af1ec7692ba1b2db1512401e1402a5e5f05a
Author: Nick Vatamaniuc <va...@gmail.com>
AuthorDate: Fri Sep 9 12:44:54 2022 -0400

    Remove commented out Jenksfile section
    
    We're not using couchdbci-debian:arm64v8-buster-erlang containers any longer
    and instead using multiarch images with buildx.
---
 build-aux/Jenkinsfile.full | 62 ----------------------------------------------
 1 file changed, 62 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 7516ca402..f48c6346f 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -312,68 +312,6 @@ pipeline {
       }
     }
 
-    /*
-     * Example of how to do a qemu-based run, please leave here
-     */
-
-    /*
-     stage('Debian Buster arm64v8') {
-     // the process is convoluted to ensure we have the latest qemu static binaries on the node first
-     // before trying to run a foreign docker container type. Alternately ensuring the `update_qemu`
-     // container is run on every Jenkins agent *after every restart of the Docker daemon* would work.
-     agent {
-     any {
-   }
-   }
-     options {
-     timeout(time: 120, unit: "MINUTES")
-   }
-     environment {
-     platform = 'aarch64-debian-stretch'
-     sm_ver = '60'
-   }
-     stages {
-     stage('Install latest qemu binaries') {
-     steps {
-     sh( script: 'docker run --rm --privileged multiarch/qemu-user-static --reset -p yes' )
-   }
-   }
-     stage('Pull latest docker image') {
-     steps {
-     sh "docker pull apache/couchdbci-debian:arm64v8-buster-erlang-${ERLANG_VERSION}"
-   }
-   }
-     stage('Build from tarball & test & packages') {
-     steps {
-     withDockerContainer(image: "apache/couchdbci-debian:arm64v8-buster-erlang-${ERLANG_VERSION}", args: "${DOCKER_ARGS}") {
-     unstash 'tarball'
-     withEnv(['MIX_HOME='+pwd(), 'HEX_HOME='+pwd()]) {
-     sh( script: build_and_test )
-     sh( script: make_packages )
-     sh( script: cleanup_and_save )
-   }
-   }
-   }
-     post {
-     always {
-     */
-    //                  junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml'
-    /*
-   }
-     success {
-     archiveArtifacts artifacts: 'pkgs/**', fingerprint: true
-   }
-   }
-   }
-   } // stages
-     post {
-     cleanup {
-     sh 'rm -rf ${WORKSPACE}/*'
-   }
-   } // post
-   } // stage
-     */
-
     stage('Publish') {
 
       when {