Skip to content

Commit 5c1c241

Browse files
authored
PYTHON-4909 Use ubuntu for Atlas Data Lake tests (mongodb#1969)
1 parent 7286386 commit 5c1c241

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -66,39 +66,43 @@ buildvariants:
6666
PYTHON_BINARY: /opt/python/3.13/bin/python3
6767

6868
# Atlas data lake tests
69-
- name: atlas-data-lake-rhel8-py3.9-no-c
69+
- name: atlas-data-lake-ubuntu-22-py3.9-auth-no-c
7070
tasks:
7171
- name: atlas-data-lake-tests
72-
display_name: Atlas Data Lake RHEL8 py3.9 No C
72+
display_name: Atlas Data Lake Ubuntu-22 py3.9 Auth No C
7373
run_on:
74-
- rhel87-small
74+
- ubuntu2204-small
7575
expansions:
76+
AUTH: auth
7677
NO_EXT: "1"
7778
PYTHON_BINARY: /opt/python/3.9/bin/python3
78-
- name: atlas-data-lake-rhel8-py3.9
79+
- name: atlas-data-lake-ubuntu-22-py3.9-auth
7980
tasks:
8081
- name: atlas-data-lake-tests
81-
display_name: Atlas Data Lake RHEL8 py3.9
82+
display_name: Atlas Data Lake Ubuntu-22 py3.9 Auth
8283
run_on:
83-
- rhel87-small
84+
- ubuntu2204-small
8485
expansions:
86+
AUTH: auth
8587
PYTHON_BINARY: /opt/python/3.9/bin/python3
86-
- name: atlas-data-lake-rhel8-py3.13-no-c
88+
- name: atlas-data-lake-ubuntu-22-py3.13-auth-no-c
8789
tasks:
8890
- name: atlas-data-lake-tests
89-
display_name: Atlas Data Lake RHEL8 py3.13 No C
91+
display_name: Atlas Data Lake Ubuntu-22 py3.13 Auth No C
9092
run_on:
91-
- rhel87-small
93+
- ubuntu2204-small
9294
expansions:
95+
AUTH: auth
9396
NO_EXT: "1"
9497
PYTHON_BINARY: /opt/python/3.13/bin/python3
95-
- name: atlas-data-lake-rhel8-py3.13
98+
- name: atlas-data-lake-ubuntu-22-py3.13-auth
9699
tasks:
97100
- name: atlas-data-lake-tests
98-
display_name: Atlas Data Lake RHEL8 py3.13
101+
display_name: Atlas Data Lake Ubuntu-22 py3.13 Auth
99102
run_on:
100-
- rhel87-small
103+
- ubuntu2204-small
101104
expansions:
105+
AUTH: auth
102106
PYTHON_BINARY: /opt/python/3.13/bin/python3
103107

104108
# Aws auth tests

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,10 +553,10 @@ def create_no_c_ext_variants():
553553

554554
def create_atlas_data_lake_variants():
555555
variants = []
556-
host = "rhel8"
556+
host = "ubuntu22"
557557
for python, c_ext in product(MIN_MAX_PYTHON, C_EXTS):
558558
tasks = ["atlas-data-lake-tests"]
559-
expansions = dict()
559+
expansions = dict(AUTH="auth")
560560
handle_c_ext(c_ext, expansions)
561561
display_name = get_display_name("Atlas Data Lake", host, python=python, **expansions)
562562
variant = create_variant(

0 commit comments

Comments
 (0)