We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abfd6f commit 5313eebCopy full SHA for 5313eeb
.evergreen/scripts/setup_tests.py
@@ -90,6 +90,13 @@ def setup_libmongocrypt():
90
distro = get_distro()
91
if distro.name.startswith("Debian"):
92
target = f"debian{distro.version_id}"
93
+ elif distro.name.startswith("Ubuntu"):
94
+ if distro.version_id == "20.04":
95
+ target = "debian11"
96
+ elif distro.version_id == "22.04":
97
+ target = "debian12"
98
+ elif distro.version_id == "24.04":
99
+ target = "debian13"
100
elif distro.name.startswith("Red Hat"):
101
if distro.version_id.startswith("7"):
102
target = "rhel-70-64-bit"
0 commit comments