Skip to content

Commit 651e6ec

Browse files
committed
Apply @blink1073 suggestinos
1 parent d0148cf commit 651e6ec

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,15 @@ buildvariants:
133133
- rhel87-small
134134
expansions:
135135
COMPRESSOR: zstd
136+
- name: compression-zstd-ubuntu-22
137+
tasks:
138+
- name: .test-standard !.server-4.2 !.server-4.4 !.server-5.0 .python-3.14
139+
- name: .test-standard !.server-4.2 !.server-4.4 !.server-5.0 .python-3.14t
140+
display_name: Compression zstd Ubuntu-22
141+
run_on:
142+
- ubuntu2204-small
143+
expansions:
144+
COMPRESSOR: ztsd
136145

137146
# Coverage report tests
138147
- name: coverage-report

.evergreen/scripts/generate_config.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,22 @@ def create_compression_variants():
194194
expansions=expansions,
195195
)
196196
)
197+
# Add explicit tests with compression.zstd support on linux.
198+
host = HOSTS["ubuntu22"]
199+
expansions = dict(COMPRESSOR="ztsd")
200+
tasks = [
201+
".test-standard !.server-4.2 !.server-4.4 !.server-5.0 .python-3.14",
202+
".test-standard !.server-4.2 !.server-4.4 !.server-5.0 .python-3.14t",
203+
]
204+
display_name = get_variant_name(f"Compression {compressor}", host)
205+
variants.append(
206+
create_variant(
207+
tasks,
208+
display_name,
209+
host=host,
210+
expansions=expansions,
211+
)
212+
)
197213
return variants
198214

199215

0 commit comments

Comments
 (0)