This is an automated email from the ASF dual-hosted git repository. pgj pushed a commit to branch jenkins-clouseau-2.25.0 in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/jenkins-clouseau-2.25.0 by this push: new a7c2e58dc delete: Narrow down the scope for troubleshooting a7c2e58dc is described below commit a7c2e58dc048577355098b27824d22c263110e7e Author: Gabor Pali <gabor.p...@ibm.com> AuthorDate: Tue Mar 25 12:27:06 2025 +0100 delete: Narrow down the scope for troubleshooting --- build-aux/Jenkinsfile.full | 102 +-------------------------------------------- 1 file changed, 1 insertion(+), 101 deletions(-) diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full index 35a9311b9..1d3175577 100644 --- a/build-aux/Jenkinsfile.full +++ b/build-aux/Jenkinsfile.full @@ -23,87 +23,6 @@ MINIMUM_ERLANG_VERSION = '25.3.2.18' // We create parallel build / test / package stages for each OS using the metadata // in this map. Adding a new OS should ideally only involve adding a new entry here. meta = [ - 'centos8': [ - name: 'CentOS 8', - spidermonkey_vsn: '60', - with_nouveau: true, - with_clouseau: true, - image: "apache/couchdbci-centos:8-erlang-${ERLANG_VERSION}" - ], - - 'centos9': [ - name: 'CentOS 9', - spidermonkey_vsn: '78', - with_nouveau: true, - with_clouseau: true, - image: "apache/couchdbci-centos:9-erlang-${ERLANG_VERSION}" - ], - - 'focal': [ - name: 'Ubuntu 20.04', - spidermonkey_vsn: '68', - with_nouveau: true, - with_clouseau: true, - image: "apache/couchdbci-ubuntu:focal-erlang-${ERLANG_VERSION}" - ], - - 'jammy': [ - name: 'Ubuntu 22.04', - spidermonkey_vsn: '91', - with_nouveau: true, - with_clouseau: true, - image: "apache/couchdbci-ubuntu:jammy-erlang-${ERLANG_VERSION}" - ], - - 'noble': [ - name: 'Ubuntu 24.04', - spidermonkey_vsn: '115', - with_nouveau: true, - with_clouseau: true, - image: "apache/couchdbci-ubuntu:noble-erlang-${ERLANG_VERSION}" - ], - - 'bookworm-ppc64': [ - name: 'Debian POWER', - spidermonkey_vsn: '78', - with_nouveau: true, - with_clouseau: true, - image: "apache/couchdbci-debian:bookworm-erlang-${ERLANG_VERSION}", - node_label: 'ppc64le' - ], - - 'bookworm-s390x': [ - name: 'Debian s390x', - spidermonkey_vsn: '78', - with_nouveau: true, - image: "apache/couchdbci-debian:bookworm-erlang-${ERLANG_VERSION}", - node_label: 's390x' - ], - - 'bullseye': [ - name: 'Debian x86_64', - spidermonkey_vsn: '78', - with_nouveau: true, - with_clouseau: true, - image: "apache/couchdbci-debian:bullseye-erlang-${ERLANG_VERSION}" - ], - - 'bookworm': [ - name: 'Debian x86_64', - spidermonkey_vsn: '78', - with_nouveau: true, - with_clouseau: true, - image: "apache/couchdbci-debian:bookworm-erlang-${ERLANG_VERSION}" - ], - - 'bookworm-quickjs': [ - name: 'Debian 12 with QuickJS', - disable_spidermonkey: true, - with_nouveau: true, - with_clouseau: true, - image: "apache/couchdbci-debian:bookworm-erlang-${ERLANG_VERSION}" - ], - 'freebsd-x86_64': [ name: 'FreeBSD x86_64', spidermonkey_vsn: '91', @@ -111,27 +30,12 @@ meta = [ gnu_make: 'gmake' ], - // Spidermonkey 91 has issues on ARM64 FreeBSD - // use QuickJS for now - 'freebsd-arm64': [ - name: 'FreeBSD ARM64 QuickJS', - disable_spidermonkey: true, - with_clouseau: false, - gnu_make: 'gmake' - ], - 'macos': [ name: 'macOS', spidermonkey_vsn: '128', with_nouveau: false, with_clouseau: true, gnu_make: 'make' - ], - - 'win2022': [ - name: 'Windows 2022', - spidermonkey_vsn: '128', - node_label: 'win' ] ] @@ -184,12 +88,8 @@ def generateNativeStage(platform) { dir( "${platform}/build" ) { sh "${configure(meta[platform])}" sh '$MAKE' - sh '$MAKE eunit' - sh '$MAKE elixir' - sh '$MAKE elixir-search' + sh '$MAKE --debug=jobs elixir-search' sh '$MAKE mango-test' - sh '$MAKE weatherreport-test' - sh '$MAKE nouveau-test' } } }