From a140345bd0c4e78e17845d95aead294942afa8d0 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 e7c296f2c92037d1fc5f606a265e02c4af38b09a 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 b09bbda3a7c36d034dcbae5146538d257cdbf91f 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 dcfd95f454220823c8780adc01d5d3a8990ae4b1 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