This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch exlcude-clouseau-for-macos in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit e578471a966bcd71c7086e2662574f8777f0c93e Author: Nick Vatamaniuc <[email protected]> AuthorDate: Wed Aug 21 22:08:54 2024 -0400 Exclude clouseau from macos full CI variant It stopped working as of https://github.com/apache/couchdb/pull/5180. It works for all the other CI runners and locally on at least two macos dev machine. We tried to debug it a bit in dev but without a result, there was no clouseau.log file create yet to dump. It can still be debugged and investigated on a `jenkins-*` branch, but for now, try to restore the CI back to a green state. --- build-aux/Jenkinsfile.full | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full index d79b35606..508d4a117 100644 --- a/build-aux/Jenkinsfile.full +++ b/build-aux/Jenkinsfile.full @@ -113,11 +113,14 @@ meta = [ gnu_make: 'gmake' ], + // Excluding clouseau for macos. This stopped working as + // of https://github.com/apache/couchdb/pull/5180 (bump to 2.23.1) + // but works for the other workers. 'macos': [ name: 'macOS', spidermonkey_vsn: '91', with_nouveau: false, - with_clouseau: true, + with_clouseau: false, gnu_make: 'make' ] ]
