This is an automated email from the ASF dual-hosted git repository.
ddiederen pushed a commit to branch branch-3.7.0
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/branch-3.7.0 by this push:
new 5ae153c ZOOKEEPER-3987: Reduce fork count for tests to 1
5ae153c is described below
commit 5ae153c193781cf97a53499de85b0612caef49cf
Author: Christopher Tubbs <[email protected]>
AuthorDate: Wed Feb 17 17:12:11 2021 +0000
ZOOKEEPER-3987: Reduce fork count for tests to 1
Increase test stability by avoiding test failures due to port
collisions by preventing tests from running concurrently in
the GitHub Actions CI builds.
Author: Christopher Tubbs <[email protected]>
Reviewers: Enrico Olivelli <[email protected]>, Damien Diederen
<[email protected]>
Closes #1606 from ctubbsii/reduce-forkCount
(cherry picked from commit c26f96c089f20902a39cb0088e68a5b58e35c024)
Signed-off-by: Damien Diederen <[email protected]>
---
.github/workflows/ci.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 0b578f9..16171d2 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -42,7 +42,7 @@ jobs:
args: '-Pfull-build apache-rat:check verify -DskipTests
spotbugs:check checkstyle:check'
- name: 'full-build-java-tests'
jdk: 11
- args: '-Pfull-build verify -Dsurefire-forkcount=1C -DskipCppUnit
-Dsurefire.rerunFailingTestsCount=5'
+ args: '-Pfull-build verify -Dsurefire-forkcount=1 -DskipCppUnit
-Dsurefire.rerunFailingTestsCount=5'
- name: 'full-build-cppunit-tests'
jdk: 11
args: '-Pfull-build verify -Dtest=_ -DfailIfNoTests=false'