Skip to content

Commit

Permalink
Fix support for RHEL 7.0 (mongodb-labs#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored and adriandole committed Oct 7, 2024
1 parent be6ff7d commit 66309fa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1236,6 +1236,10 @@ axes:
display_name: "Ubuntu 20.04 (ARM64)"
run_on: ubuntu2004-arm64-small

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

- id: rhel87-power8
display_name: "RHEL 8 (POWER8)"
run_on: rhel81-power8-small
Expand Down
6 changes: 4 additions & 2 deletions .evergreen/start-orchestration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ echo "Creating virtual environment 'venv'..."
venvcreate "${PYTHON:?}" venv
echo "Creating virtual environment 'venv'... done."

# Install from github to get the latest mongo-orchestration.
python -m pip install -q --upgrade 'https://github.com/mongodb/mongo-orchestration/archive/master.tar.gz'
# Install from github to get the latest mongo-orchestration, fall back on published wheel.
# The fallback was added to accommodate versions of Python 3 for which there is no compatible version
# of the hatchling backend used by mongo-orchestration.
python -m pip install -q --upgrade 'https://github.com/mongodb/mongo-orchestration/archive/master.tar.gz' || python -m pip install -q --upgrade mongo-orchestration
python -m pip list
cd $DRIVERS_TOOLS

Expand Down

0 comments on commit 66309fa

Please sign in to comment.