Skip to content

Commit 276e5a7

Browse files
committed
add STABLE_VERSION
1 parent 38c43dd commit 276e5a7

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,25 +1200,27 @@ tasks:
12001200
- server-latest
12011201
- python-3.13
12021202
- sharded_cluster-auth-ssl
1203-
- name: test-v4.0-pypy3.10-noauth-ssl-replica-set
1203+
- name: test-v['8.0']-pypy3.10-noauth-ssl-replica-set
12041204
commands:
12051205
- func: assume ec2 role
12061206
- func: run server
12071207
vars:
12081208
AUTH: noauth
12091209
SSL: ssl
12101210
TOPOLOGY: replica_set
1211-
VERSION: "4.0"
1211+
VERSION:
1212+
- "8.0"
12121213
- func: run tests
12131214
vars:
12141215
AUTH: noauth
12151216
SSL: ssl
12161217
TOPOLOGY: replica_set
1217-
VERSION: "4.0"
1218+
VERSION:
1219+
- "8.0"
12181220
PYTHON_VERSION: pypy3.10
12191221
tags:
12201222
- min-max-tests
1221-
- server-4.0
1223+
- server-['8.0']
12221224
- python-pypy3.10
12231225
- replica_set-noauth-ssl
12241226
- pypy

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
MIN_MAX_PYTHON,
1717
OTHER_HOSTS,
1818
PYPYS,
19+
STABLE_VERSION,
1920
SUB_TASKS,
2021
SYNCS,
2122
TOPOLOGIES,
@@ -663,7 +664,7 @@ def create_server_tasks():
663664

664665
def create_min_max_tasks():
665666
tasks = []
666-
versions = [ALL_VERSIONS[0], ALL_VERSIONS[-1]]
667+
versions = [ALL_VERSIONS[0], ALL_VERSIONS[-1], STABLE_VERSION]
667668
pythons = [*MIN_MAX_PYTHON, PYPYS[-1]]
668669
topologies = ["standalone", "sharded_cluster", "replica_set"]
669670
for version, python, topology in zip_cycle(versions, pythons, topologies):

.evergreen/scripts/generate_config_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
##############
2323

2424
ALL_VERSIONS = ["4.0", "4.2", "4.4", "5.0", "6.0", "7.0", "8.0", "rapid", "latest"]
25+
STABLE_VERSION = ["8.0"]
2526
CPYTHONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
2627
PYPYS = ["pypy3.10"]
2728
ALL_PYTHONS = CPYTHONS + PYPYS

0 commit comments

Comments
 (0)