This is an automated email from the ASF dual-hosted git repository. nickva pushed a commit to branch disable-s390x-again in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 7144f72b1969e84a68aec2342066cf924ab2602f Author: Nick Vatamaniuc <[email protected]> AuthorDate: Fri Aug 14 14:05:34 2026 -0400 Disable s390x again Noticed repeated timeouts in `couch_cfile_prop_tests:'-property_test_/0-fun-2`. It seems the CI worker gets good enough fio throughput numbers but then periodically has issues flushing data to disk in a timely fashion. Ideally we don't want to start disabling individual tests especially for something as crucial as cfile and fdatasync we'll disable the CI for now. No other architectures CI nodes seem to have this issue. --- build-aux/Jenkinsfile | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/build-aux/Jenkinsfile b/build-aux/Jenkinsfile index 93ec04bf7..cfd3e7ecd 100644 --- a/build-aux/Jenkinsfile +++ b/build-aux/Jenkinsfile @@ -134,17 +134,22 @@ meta = [ // elixir tests fail. That's why we're using the s390x_own label instead of // s390x // - 'base-s390x': [ - name: 'Debian s390x', - spidermonkey_vsn: '128', - with_nouveau: true, - // QuickJS test262 shows a discrepancy typedarray-arg-set-values-same-buffer-other-type.js - // Test262Error: 51539607552,42,0,4,5,6,7,8 - quickjs_test262: false, - image: "${DOCKER_IMAGE_BASE}-${ERLANG_VERSION}", - node_label: 's390x_own', - gnu_make_eunit_opts: "${DEFAULT_GNU_MAKE_EUNIT_OPTS}" - ], + // Noticed repeated timeouts in couch_cfile_prop_tests:'-property_test_/0-fun-2-'/1 + // (test/eunit/couch_cfile_prop_tests.erl) in function prim_file:datasync/1 on this + // CI worker. Fio tests indicate good throughput but often enough all 3 retries fail + // cfile tests. Disabled to avoid blocking PR merging + // + // 'base-s390x': [ + // name: 'Debian s390x', + // spidermonkey_vsn: '128', + // with_nouveau: true, + // // QuickJS test262 shows a discrepancy typedarray-arg-set-values-same-buffer-other-type.js + // // Test262Error: 51539607552,42,0,4,5,6,7,8 + // quickjs_test262: false, + // image: "${DOCKER_IMAGE_BASE}-${ERLANG_VERSION}", + // node_label: 's390x_own', + // gnu_make_eunit_opts: "${DEFAULT_GNU_MAKE_EUNIT_OPTS}" + // ], 'base': [ name: 'Debian x86_64',
