This is an automated email from the ASF dual-hosted git repository. wohali pushed a commit to branch jenkins-arm-anywhere in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit eabc03d03194433c397870936c523752fc2ee3f3 Author: Joan Touzet <[email protected]> AuthorDate: Fri May 3 16:42:38 2019 -0400 [WIP] Use aarch64 image on x86_64 ASF builder --- .gitignore | 4 ++ Jenkinsfile | 164 +----------------------------------------------------------- src/hqueue | 1 + src/ken | 1 + src/proper | 1 + src/smoosh | 1 + 6 files changed, 9 insertions(+), 163 deletions(-) diff --git a/.gitignore b/.gitignore index 8e9ca15..150820a 100644 --- a/.gitignore +++ b/.gitignore @@ -47,14 +47,18 @@ src/docs/ src/ets_lru/ src/fauxton/ src/folsom/ +src/hqueue/ src/ibrowse/ src/ioq/ src/jiffy/ +src/ken/ src/khash/ src/meck/ src/mochiweb/ src/oauth/ +src/proper/ src/rebar/ +src/smoosh/ src/snappy/ src/triq/ src/hyper/ diff --git a/Jenkinsfile b/Jenkinsfile index c575748..06677e1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -152,174 +152,12 @@ pipeline { } // steps } // stage FreeBSD - stage('CentOS 6') { - agent { - docker { - image 'couchdbdev/centos-6-erlang-19.3.6:latest' - alwaysPull true - label 'ubuntu' - } - } - options { - skipDefaultCheckout() - timeout(time: 90, unit: "MINUTES") - } - environment { - platform = 'centos6' - } - steps { - sh 'rm -f apache-couchdb-*.tar.gz' - unstash 'tarball' - sh( script: build_script ) - } // steps - post { - success { - archiveArtifacts artifacts: 'pkgs/**', fingerprint: true - } - } // post - } // stage - - stage('CentOS 7') { - agent { - docker { - image 'couchdbdev/centos-7-erlang-19.3.6:latest' - alwaysPull true - label 'ubuntu' - } - } - options { - skipDefaultCheckout() - timeout(time: 90, unit: "MINUTES") - } - environment { - platform = 'centos7' - } - steps { - sh 'rm -f apache-couchdb-*.tar.gz' - unstash 'tarball' - sh( script: build_script ) - } // steps - post { - success { - archiveArtifacts artifacts: 'pkgs/**', fingerprint: true - } - } // post - } // stage - - stage('Ubuntu Xenial') { - agent { - docker { - image 'couchdbdev/ubuntu-xenial-erlang-19.3.6:latest' - alwaysPull true - label 'ubuntu' - } - } - options { - skipDefaultCheckout() - timeout(time: 90, unit: "MINUTES") - } - environment { - platform = 'xenial' - } - steps { - sh 'rm -f apache-couchdb-*.tar.gz' - unstash 'tarball' - sh( script: build_script ) - } // steps - post { - success { - archiveArtifacts artifacts: 'pkgs/**', fingerprint: true - } - } // post - } // stage - - stage('Ubuntu Bionic') { - agent { - docker { - image 'couchdbdev/ubuntu-bionic-erlang-19.3.6:latest' - alwaysPull true - label 'ubuntu' - } - } - options { - skipDefaultCheckout() - timeout(time: 90, unit: "MINUTES") - } - environment { - platform = 'xenial' - } - steps { - sh 'rm -f apache-couchdb-*.tar.gz' - unstash 'tarball' - sh( script: build_script ) - } // steps - post { - success { - archiveArtifacts artifacts: 'pkgs/**', fingerprint: true - } - } // post - } // stage - - stage('Debian Jessie') { - agent { - docker { - image 'couchdbdev/debian-jessie-erlang-19.3.6:latest' - alwaysPull true - label 'ubuntu' - } - } - options { - skipDefaultCheckout() - timeout(time: 90, unit: "MINUTES") - } - environment { - platform = 'jessie' - } - steps { - sh 'rm -f apache-couchdb-*.tar.gz' - unstash 'tarball' - sh( script: build_script ) - } // steps - post { - success { - archiveArtifacts artifacts: 'pkgs/**', fingerprint: true - } - } // post - } // stage - - stage('Debian Stretch x86_64') { - agent { - docker { - image 'couchdbdev/debian-stretch-erlang-19.3.6:latest' - alwaysPull true - label 'ubuntu' - } - } - options { - skipDefaultCheckout() - timeout(time: 90, unit: "MINUTES") - } - environment { - platform = 'jessie' - } - steps { - sh 'rm -f apache-couchdb-*.tar.gz' - unstash 'tarball' - sh( script: build_script ) - } // steps - post { - success { - archiveArtifacts artifacts: 'pkgs/**', fingerprint: true - } - } // post - } // stage - stage('Debian Stretch aarch64') { agent { docker { image 'couchdbdev/aarch64-debian-stretch-erlang-20.3.8.20:latest' alwaysPull true - label 'arm' + label 'ubuntu' } } options { diff --git a/src/hqueue b/src/hqueue new file mode 160000 index 0000000..b42f55e --- /dev/null +++ b/src/hqueue @@ -0,0 +1 @@ +Subproject commit b42f55ecfd85807ac82c71d9475461abfa87b9d1 diff --git a/src/ken b/src/ken new file mode 160000 index 0000000..2cafa80 --- /dev/null +++ b/src/ken @@ -0,0 +1 @@ +Subproject commit 2cafa8003986081bd377708effe263857d75c9ac diff --git a/src/proper b/src/proper new file mode 160000 index 0000000..f2b7b81 --- /dev/null +++ b/src/proper @@ -0,0 +1 @@ +Subproject commit f2b7b81666b21707244a40857cf50f4362b6e3c2 diff --git a/src/smoosh b/src/smoosh new file mode 160000 index 0000000..8553ee6 --- /dev/null +++ b/src/smoosh @@ -0,0 +1 @@ +Subproject commit 8553ee662c6bfd08daabf521cf5c46e0e1696b9b
