summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Vatamaniuc <vatamane@gmail.com>2022-09-09 12:44:54 -0400
committerNick Vatamaniuc <nickva@users.noreply.github.com>2022-09-10 11:55:29 -0400
commit5f86af1ec7692ba1b2db1512401e1402a5e5f05a (patch)
treececccbe133bdebe31f2ee6d41146993e4c9da5d9
parentca922a35712d3fc336c46d7d61f352bf21f8dd4d (diff)
downloadcouchdb-5f86af1ec7692ba1b2db1512401e1402a5e5f05a.tar.gz
Remove commented out Jenksfile section
We're not using couchdbci-debian:arm64v8-buster-erlang containers any longer and instead using multiarch images with buildx.
-rw-r--r--build-aux/Jenkinsfile.full62
1 files changed, 0 insertions, 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 {