diff options
author | dalyd <david.daly@mongodb.com> | 2023-02-14 22:05:05 +0000 |
---|---|---|
committer | Jim O'Leary <jim.oleary@gmail.com> | 2023-02-15 10:29:06 +0000 |
commit | c1547bc49a86738cde8e0a920290d373ed3dc242 (patch) | |
tree | 3fa788a3d9123311e0681fc7a422b7a4ff6e70cd /etc/perf.yml | |
parent | 38ebd8f31027ac6ef6c593971356abb7c08b486e (diff) | |
download | mongo-BACKPORT-14790-perf.tar.gz |
SERVER-73998: Fix perf.ymlBACKPORT-14790-perf
(cherry picked from commit 638f348aea94c7fa0d26ffcaeb4380430a54d5e6)
Diffstat (limited to 'etc/perf.yml')
-rw-r--r-- | etc/perf.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/etc/perf.yml b/etc/perf.yml index 4b6ea153818..20a76604a1d 100644 --- a/etc/perf.yml +++ b/etc/perf.yml @@ -770,7 +770,7 @@ microbenchmark-buildvariants: display_name: Standalone Linux inMemory batchtime: 240 # 4 hours modules: *modules - expansions: + expansions: &linux-standalone-expansions # We are explicitly tracking the rhel62 variant compile options from evergreen.yml for # microbenchmarks, since they run on the centos6 boxes. If we can get proper artifacts directly # from that project, we should do that and remove the compile tasks. @@ -821,7 +821,7 @@ microbenchmark-buildvariants: display_name: 1-Node ReplSet Linux inMemory batchtime: 240 # 4 hours modules: *modules - expansions: + expansions: &linux-repl-expansions mongod_exec_wrapper: *exec_wrapper perf_exec_wrapper: *perf_wrapper platform: linux @@ -851,6 +851,7 @@ buildvariants: display_name: Standalone Linux inMemory (all feature flags) batchtime: 1440 # 24 hours expansions: + <<: *linux-standalone-expansions mongodb_setup: microbenchmarks_standalone-all-feature-flags - <<: *linux-wt-repl @@ -858,4 +859,5 @@ buildvariants: display_name: 1-Node ReplSet Linux inMemory (all feature flags) batchtime: 1440 # 24 hours expansions: + <<: *linux-repl-expansions mongodb_setup: microbenchmarks_replica-all-feature-flags |