This is an automated email from the ASF dual-hosted git repository. rnewson pushed a commit to branch lucene-10 in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 1c03d3158e9d870d4c8691af6fd450d363b3c3f5 Author: Robert Newson <[email protected]> AuthorDate: Fri Aug 8 22:58:02 2025 +0100 enable assertions while running nouveau --- nouveau/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nouveau/build.gradle b/nouveau/build.gradle index 8e5bb84d2..43785f604 100644 --- a/nouveau/build.gradle +++ b/nouveau/build.gradle @@ -90,7 +90,10 @@ tasks.withType(AbstractArchiveTask) { reproducibleFileOrder = true } - startScripts { enabled = false } + +run { + enableAssertions = true +}
