This is an automated email from the ASF dual-hosted git repository. pgj pushed a commit to branch jenkins-clouseau-3.0.0 in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 629e46df47468b18ebf4f05a23ace98ca8b194d6 Author: Gabor Pali <[email protected]> AuthorDate: Thu Nov 27 08:01:32 2025 +0100 [DEBUG] Narrow testing scope --- build-aux/Jenkinsfile | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/build-aux/Jenkinsfile b/build-aux/Jenkinsfile index 9ad235eb0..f901cb6b2 100644 --- a/build-aux/Jenkinsfile +++ b/build-aux/Jenkinsfile @@ -35,6 +35,7 @@ other_changes = "git diff --name-only origin/${env.CHANGE_TARGET} | grep -q -v ' // 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', @@ -64,6 +65,7 @@ meta = [ quickjs_test262: true, image: "apache/couchdbci-ubuntu:jammy-erlang-${ERLANG_VERSION}" ], + */ 'noble': [ name: 'Ubuntu 24.04', @@ -73,8 +75,9 @@ meta = [ clouseau_java_home: '/opt/java/openjdk', quickjs_test262: true, image: "apache/couchdbci-ubuntu:noble-erlang-${ERLANG_VERSION}" - ], + ] //, + /* 'bullseye': [ name: 'Debian x86_64', spidermonkey_vsn: '78', @@ -219,6 +222,7 @@ meta = [ quickjs_test262: false, node_label: 'win' ] + */ ] def String configure(config) { @@ -412,13 +416,13 @@ def generateContainerStage(platform) { dir( "${platform}/build" ) { sh "${configure(meta[platform])}" sh 'make' - retry(3) {sh 'make eunit'} - if (meta[platform].quickjs_test262) {retry(3) {sh 'make quickjs-test262'}} - retry(3) {sh 'make elixir'} + // retry(3) {sh 'make eunit'} + // if (meta[platform].quickjs_test262) {retry(3) {sh 'make quickjs-test262'}} + // retry(3) {sh 'make elixir'} retry(3) {sh "${setClouseauJavaHome}make elixir-search || cat dev/logs/clouseau1.log"} retry(3) {sh "${setClouseauJavaHome}make mango-test || cat dev/logs/clouseau1.log"} - retry(3) {sh 'make weatherreport-test'} - retry(3) {sh 'make nouveau-test'} + // retry(3) {sh 'make weatherreport-test'} + // retry(3) {sh 'make nouveau-test'} } } catch (err) {
