-
Notifications
You must be signed in to change notification settings - Fork 893
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
GODRIVER-2607 Remove legacy shell from test scripts #1429
Conversation
cc @alcaeus, I think this should be the prototype PR for other drivers to follow. |
.evergreen/config.yml
Outdated
@@ -144,7 +145,7 @@ functions: | |||
# If this was a patch build, doing a fresh clone would not actually test the patch | |||
cp -R ${PROJECT_DIRECTORY}/ $DRIVERS_TOOLS | |||
else | |||
git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS | |||
git clone --branch GODRIVER-2607 https://github.com/blink1073/drivers-evergreen-tools.git $DRIVERS_TOOLS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shall we wait for the merging of mongodb-labs/drivers-evergreen-tools#365?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep
API Change ReportNo changes found! |
(cherry picked from commit 1066e2a)
GODRIVER-2607
Summary
Use new test scripts in Drivers-Evergreen-Tools.
Background & Motivation
Clean up EVG config and avoid the need for the legacy
mongo
shell.Note that we have to use
ec2.assume_role
to get the secrets because there is no instance profile associated withthe macos hosts.
Relies on mongodb-labs/drivers-evergreen-tools#365