0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-57068 Reduce resmoke.py --jobs for some tasks on PowerPC.

This commit is contained in:
Max Hirschhorn 2021-05-19 19:09:15 +00:00 committed by Evergreen Agent
parent bddc8a8263
commit 28dd7c948c

View File

@ -39,7 +39,15 @@ TASKS_FACTORS = [{"task": r"replica_sets.*", "factor": 0.5}, {"task": r"sharding
DISTRO_MULTIPLIERS = {"rhel80-large": 1.618}
# Apply factor for a task based on the machine type it is running on.
MACHINE_TASK_FACTOR_OVERRIDES = {"aarch64": TASKS_FACTORS}
MACHINE_TASK_FACTOR_OVERRIDES = {
"aarch64":
TASKS_FACTORS,
"ppc64le": [
dict(task=r"causally_consistent_hedged_reads_jscore_passthrough.*", factor=0.125),
dict(task=r"causally_consistent_read_concern_snapshot_passthrough.*", factor=0.125),
dict(task=r"sharded_causally_consistent_read_concern_snapshot_passthrough.*", factor=0.125),
],
}
# Apply factor for a task based on the platform it is running on.
PLATFORM_TASK_FACTOR_OVERRIDES = {"win32": TASKS_FACTORS, "cygwin": TASKS_FACTORS}