This is an automated email from the ASF dual-hosted git repository.
vatamane pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/main by this push:
new d38f14f7d Exclude clouseau from macos full CI variant
d38f14f7d is described below
commit d38f14f7d777b7cda79b9862ee304150ad3418ea
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'
]
]