From 464326eb0775fe0b3a2cf544a4968c7fd544f65b Mon Sep 17 00:00:00 2001 From: John Sully Date: Mon, 11 May 2020 21:56:17 -0400 Subject: [PATCH 1/4] limit clients to make tests more reliable Former-commit-id: 2c130a816647bacaba5d99d76c19e09b9c9875da --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ddfaa9cf..5dc2fa246 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: test run: | sudo apt-get -y install tcl8.5 - ./runtest --verbose + ./runtest --clients $(nproc) --verbose - name: cluster-test run: | ./runtest-cluster From 35ad3b53fcd0bfd15bbf8537cf27e6071f8e9352 Mon Sep 17 00:00:00 2001 From: John Sully Date: Mon, 11 May 2020 22:04:52 -0400 Subject: [PATCH 2/4] Reduce test load for more reliability Former-commit-id: 3f8f9743c1f6d75647cfbdbc1544a8c8a5142df3 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5dc2fa246..c5d476f06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: test run: | sudo apt-get -y install tcl8.5 - ./runtest --clients $(nproc) --verbose + ./runtest --clients $(nproc - 1) --verbose - name: cluster-test run: | ./runtest-cluster From 27e605293eaef9bb2a24e07223e79da06427831c Mon Sep 17 00:00:00 2001 From: John Sully Date: Mon, 11 May 2020 22:09:27 -0400 Subject: [PATCH 3/4] Update ci.yml Former-commit-id: d06c6c67ea36a21e515390405a0f947a23ec4b42 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5d476f06..1572316e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: test run: | sudo apt-get -y install tcl8.5 - ./runtest --clients $(nproc - 1) --verbose + ./runtest --clients 2 --verbose - name: cluster-test run: | ./runtest-cluster From 14e32ff682243c3b2555496b66df95c03dc770e2 Mon Sep 17 00:00:00 2001 From: John Sully Date: Tue, 12 May 2020 01:06:08 -0400 Subject: [PATCH 4/4] Update ci.yml Former-commit-id: d4b1d3f755f7c1f6ca4642b5258b4a5157eacb5a --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1572316e9..b2c723289 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: test run: | sudo apt-get -y install tcl8.5 - ./runtest --clients 2 --verbose + ./runtest --clients 4 --verbose - name: cluster-test run: | ./runtest-cluster