This is an automated email from the ASF dual-hosted git repository. ronny pushed a commit to branch dev/enable-eunit-elixir-test-win in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit ac3d76d0a388df9c520d143d4c221dabc2c8afc8 Author: Ronny Berndt <[email protected]> AuthorDate: Sun Jan 25 15:02:39 2026 +0100 dev: Enable Eunit tests on Windows --- build-aux/Jenkinsfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/build-aux/Jenkinsfile b/build-aux/Jenkinsfile index de0eab873..61875c923 100644 --- a/build-aux/Jenkinsfile +++ b/build-aux/Jenkinsfile @@ -331,7 +331,14 @@ def generateNativeStage(platform) { make -f Makefile.win release """, label: 'Configure and Build') - //powershell( script: ".\\..\\..\\couchdb-glazier\\bin\\shell.ps1; make -f Makefile.win eunit", label: 'EUnit tests') + retry (3) { + powershell( script: """ + .\\..\\..\\couchdb-glazier\\bin\\shell.ps1 + .\\..\\..\\couchdb-glazier\\bin\\exclude_tests_win.ps1 .\ + make -f Makefile.win eunit + """, label: 'EUnit tests') + } + //powershell( script: ".\\..\\..\\couchdb-glazier\\bin\\shell.ps1; make -f Makefile.win elixir", label: 'Elixir tests') powershell( script: """
