Limit parallelism to hopefully work on machines with 160 cores.

0.61
Jussi Pakkanen 3 years ago committed by Nirbheek Chauhan
parent ff3ae9383f
commit 9e27c1b89e
  1. 7
      run_project_tests.py

@ -1516,10 +1516,15 @@ if __name__ == '__main__':
# This fails in some CI environments for unknown reasons. # This fails in some CI environments for unknown reasons.
num_workers = multiprocessing.cpu_count() num_workers = multiprocessing.cpu_count()
except Exception as e: except Exception as e:
print('Could not determine number of CPUs due to the following reason:' + str(e)) print('Could not determine number of CPUs due to the following reason:', str(e))
print('Defaulting to using only two processes') print('Defaulting to using only two processes')
num_workers = 2 num_workers = 2
if num_workers > 64:
# Too much parallelism seems to trigger a potential Python bug:
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1004107
num_workers = 64
parser = argparse.ArgumentParser(description="Run the test suite of Meson.") parser = argparse.ArgumentParser(description="Run the test suite of Meson.")
parser.add_argument('extra_args', nargs='*', parser.add_argument('extra_args', nargs='*',
help='arguments that are passed directly to Meson (remember to have -- before these).') help='arguments that are passed directly to Meson (remember to have -- before these).')

Loading…
Cancel
Save