This is an automated email from the ASF dual-hosted git repository. rnewson pushed a commit to branch jenkins-fix-ci in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit ed5b8a5c3a91fe5d5dcfb1934860012132d92918 Author: Robert Newson <[email protected]> AuthorDate: Wed Jul 23 09:11:42 2025 +0100 fix CI --- Makefile | 7 ++++++- configure.ps1 | 4 ---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 3079c4f3f..eefd4988c 100644 --- a/Makefile +++ b/Makefile @@ -484,7 +484,12 @@ clean: @rm -rf .rebar/ @rm -f bin/couchjs @rm -f bin/weatherreport - @find src/*/ebin -not -path 'src/cowlib/ebin/cowlib.app' -not -path 'src/gun/ebin/gun.app' -delete + @find src/*/ebin \ + -not -path 'src/cowlib/ebin/cowlib.app' \ + -not -path 'src/cowlib/ebin' \ + -not -path 'src/gun/ebin/gun.app' \ + -not -path 'src/gun/ebin' \ + -delete @rm -rf src/*/.rebar @rm -rf src/*/priv/*.so @rm -rf share/server/main.js share/server/main-ast-bypass.js share/server/main-coffee.js diff --git a/configure.ps1 b/configure.ps1 index c9449bdbb..c7c730c70 100644 --- a/configure.ps1 +++ b/configure.ps1 @@ -248,10 +248,6 @@ with_docs = $BuildDocs with_nouveau = $($WithNouveau.ToString().ToLower()) with_clouseau = $($WithClouseau.ToString().ToLower()) -$Env:GIT_CONFIG_COUNT = 1 -$Env:GIT_CONFIG_KEY_0 = "url.https://github.com/apache/couchdb-.insteadOf" -$Env:GIT_CONFIG_VALUE_0 = "https://github.com/ninenines/" - user = $CouchDBUser js_engine = $JSEngine
