Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PYTHON-4764 Update to use current supported EVG hosts #496

Merged
merged 6 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1188,13 +1188,13 @@ axes:

- id: rhel8
display_name: "RHEL 8"
run_on: rhel87-small
run_on: rhel88-small

- id: macos-1100
display_name: "macOS 11.00"
run_on: macos-1100
- id: macos-14
display_name: "macOS 14"
run_on: macos-14

- id: windows-64-vsMulti-small
- id: windows
display_name: "Windows 64"
run_on: windows-64-vsMulti-small

Expand All @@ -1215,9 +1215,13 @@ axes:
display_name: "Amazon Linux 2023 x64"
run_on: amazon2023.0-small

- id: macos-14-arm64
display_name: "macOS 14 arm64"
run_on: macos-14-arm64

- id: rhel9
display_name: "RHEL 9.0 x64"
run_on: rhel91-small
display_name: "RHEL 9 x64"
run_on: rhel94-small

# OSes that support versions of MongoDB>=5.0 with SSL.
- id: os-requires-50
Expand All @@ -1232,21 +1236,21 @@ axes:
display_name: "Ubuntu 20.04"
run_on: ubuntu2004-test

- id: ubuntu2004-arm64-small
- id: ubuntu2004-arm64
display_name: "Ubuntu 20.04 (ARM64)"
run_on: ubuntu2004-arm64-small

- id: rhel70-small
- id: rhel7
display_name: "RHEL 7"
run_on: rhel70-small

- id: rhel87-power8
- id: rhel8-power8
display_name: "RHEL 8 (POWER8)"
run_on: rhel81-power8-small
run_on: rhel8-power-large

- id: rhel83-zseries-small
- id: rhel8-zseries
display_name: "RHEL8 (zSeries)"
run_on: rhel83-zseries-small
run_on: rhel8-zseries-small

- id: topology
display_name: Topology
Expand Down
4 changes: 2 additions & 2 deletions .evergreen/download-mongodb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ get_mongodb_download_url_for ()
MONGODB_60_PERF="http://downloads.10gen.com/linux/mongodb-linux-x86_64-enterprise-rhel90${DEBUG}-${VERSION_60_PERF}.tgz"
MONGODB_60="http://downloads.10gen.com/linux/mongodb-linux-x86_64-enterprise-rhel90${DEBUG}-${VERSION_60}.tgz"
;;
linux-rhel-8.1-ppc64le)
linux-rhel-8*-ppc64le)
MONGODB_LATEST="http://downloads.10gen.com/linux/mongodb-linux-ppc64le-enterprise-rhel81${DEBUG}-latest.tgz"
MONGOSH="https://downloads.mongodb.com/compass/mongosh-${VERSION_MONGOSH}-linux-ppc64le.tgz"
MONGODB_RAPID="http://downloads.10gen.com/linux/mongodb-linux-ppc64le-enterprise-rhel81${DEBUG}-${VERSION_RAPID}.tgz"
Expand Down Expand Up @@ -214,7 +214,7 @@ get_mongodb_download_url_for ()
MONGODB_36="http://downloads.10gen.com/linux/mongodb-linux-s390x-enterprise-rhel72${DEBUG}-3.6.4.tgz"
MONGODB_34="http://downloads.10gen.com/linux/mongodb-linux-s390x-enterprise-rhel72${DEBUG}-3.4.14.tgz"
;;
linux-rhel-7.1-ppc64le)
linux-rhel-7*-ppc64le)
MONGODB_LATEST="http://downloads.10gen.com/linux/mongodb-linux-ppc64le-enterprise-rhel71${DEBUG}-latest.tgz"
MONGOSH="https://downloads.mongodb.com/compass/mongosh-${VERSION_MONGOSH}-linux-ppc64le.tgz"
MONGODB_50="http://downloads.10gen.com/linux/mongodb-linux-ppc64le-enterprise-rhel71${DEBUG}-${VERSION_50}.tgz"
Expand Down
Loading