Skip to content

Commit ef1f45f

Browse files
committed
Run with half the parallelism
Maybe 64 concurrent jobs is part of why we're getting flaky failures, at least some of which look like timing issues. Let's try half that.
1 parent d16e612 commit ef1f45f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration-tests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,5 @@ cd runtime_output_directory
5050
[ -e mysqld ] || ln -s mysqld-debug mysqld
5151
cd ../mysql-test
5252
export MTR_MAX_TEST_FAIL=1000
53-
./mysql-test-run --force --skip-ndb --nounit-tests --parallel=$(nproc)
53+
MTR_PARALLELISM=$[$(nproc) / 2]
54+
./mysql-test-run --force --skip-ndb --nounit-tests --parallel=$MTR_PARALLELISM

0 commit comments

Comments
 (0)