Skip to content

Commit b04145c

Browse files
committed
update storage engine variants
1 parent 8a55ba1 commit b04145c

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -955,15 +955,7 @@ buildvariants:
955955
# Storage engine tests
956956
- name: storage-inmemory-rhel8-python3.9
957957
tasks:
958-
- name: .standalone .noauth .nossl .4.0 .sync_async
959-
- name: .standalone .noauth .nossl .4.2 .sync_async
960-
- name: .standalone .noauth .nossl .4.4 .sync_async
961-
- name: .standalone .noauth .nossl .5.0 .sync_async
962-
- name: .standalone .noauth .nossl .6.0 .sync_async
963-
- name: .standalone .noauth .nossl .7.0 .sync_async
964-
- name: .standalone .noauth .nossl .8.0 .sync_async
965-
- name: .standalone .noauth .nossl .rapid .sync_async
966-
- name: .standalone .noauth .nossl .latest .sync_async
958+
- name: .standard-linux
967959
display_name: Storage InMemory RHEL8 Python3.9
968960
run_on:
969961
- rhel87-small
@@ -972,8 +964,7 @@ buildvariants:
972964
PYTHON_BINARY: /opt/python/3.9/bin/python3
973965
- name: storage-mmapv1-rhel8-python3.9
974966
tasks:
975-
- name: .standalone .4.0 .noauth .nossl .sync_async
976-
- name: .replica_set .4.0 .noauth .nossl .sync_async
967+
- name: .standard-linux .server-4.0
977968
display_name: Storage MMAPv1 RHEL8 Python3.9
978969
run_on:
979970
- rhel87-small

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,11 @@ def create_storage_engine_variants():
286286
python = CPYTHONS[0]
287287
expansions = dict(STORAGE_ENGINE=engine.lower())
288288
if engine == engines[0]:
289-
tasks = [f".standalone .noauth .nossl .{v} .sync_async" for v in ALL_VERSIONS]
289+
tasks = [".standard-linux"]
290290
else:
291291
# MongoDB 4.2 drops support for MMAPv1
292292
versions = get_versions_until("4.0")
293-
tasks = [f".standalone .{v} .noauth .nossl .sync_async" for v in versions] + [
294-
f".replica_set .{v} .noauth .nossl .sync_async" for v in versions
295-
]
293+
tasks = [f".standard-linux .server-{v}" for v in versions]
296294
display_name = get_variant_name(f"Storage {engine}", host, python=python)
297295
variant = create_variant(
298296
tasks, display_name, host=host, python=python, expansions=expansions

0 commit comments

Comments
 (0)