blob: bb14c88c6383a0d8a6d650eed596b19c852e3a59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# This file defines timeouts in evergreen that will override the default timeouts.
#
# Each key under `overrides` provides the build variant where the override will occur. The
# override should include the `task` that should have its timeout overridden and either the
# `exec_timeout` to override or the `idle_timeout` to override.
#
# The timeouts should be specified in minutes.
# Note: In order to make it easier to find existing entries, please try to keep the build variants
# in alphabetical order.
overrides:
enterprise-macos:
- task: replica_sets_jscore_passthrough
exec_timeout: 150 # 2.5 hours
- task: run_unittests
exec_timeout: 60
enterprise-macos-arm64:
- task: replica_sets_jscore_passthrough
exec_timeout: 150 # 2.5 hours
- task: run_unittests
exec_timeout: 60
enterprise-macos-cxx20:
- task: run_unittests
exec_timeout: 60
enterprise-macos-rosetta-2:
- task: run_unittests
exec_timeout: 60
enterprise-rhel-80-64-bit-coverage:
- task: replica_sets_jscore_passthrough
exec_timeout: 150 # 2.5 hours.
enterprise-rhel-80-64-bit-dynamic:
- task: replica_sets_large_txns_format
exec_timeout: 120 # 2 hours.
- task: config_fuzzer_replica_sets_jscore_passthrough
exec_timeout: 150 # 2.5 hours.
enterprise-rhel80-debug-tsan:
- task: run_unittests
exec_timeout: 24
enterprise-windows:
- task: replica_sets_jscore_passthrough
exec_timeout: 180 # 3 hours.
enterprise-windows-all-feature-flags-suggested:
- task: replica_sets_jscore_passthrough
exec_timeout: 180 # 3 hours.
linux-64-debug:
- task: auth
exec_timeout: 60 # 1 hour.
linux-64-debug-repeated-execution:
- task: run_unittests
exec_timeout: 120 # 2 hours.
macos:
- task: replica_sets_jscore_passthrough
exec_timeout: 150 # 2.5 hours
- task: run_unittests
exec_timeout: 60
- task: sharded_collections_jscore_passthrough
exec_timeout: 300 # 5 hours
macos-debug-suggested:
- task: run_unittests
exec_timeout: 60
macos-arm64:
- task: run_unittests
exec_timeout: 60
- task: sharding_update_v1_oplog_jscore_passthrough
exec_timeout: 150 # 2.5 hours
- task: sharded_collections_jscore_passthrough
exec_timeout: 300 # 5 hours
rhel80-asan:
- task: run_unittests
exec_timeout: 24
rhel80-debug-asan:
- task: run_unittests
exec_timeout: 24
rhel80-debug-aubsan-lite:
- task: run_unittests
exec_timeout: 24
rhel80-debug-ubsan:
- task: run_unittests
exec_timeout: 24
rhel80-debug-suggested:
- task: replica_sets_jscore_passthrough
exec_timeout: 180 # 3 hours.
rhel80-ubsan:
- task: run_unittests
exec_timeout: 24
windows:
- task: replica_sets
exec_timeout: 180 # 3 hours.
windows-debug-suggested:
- task: replica_sets_initsync_jscore_passthrough
exec_timeout: 150 # 2.5 hours.
- task: replica_sets_jscore_passthrough
exec_timeout: 180 # 3 hours.
|