-
Notifications
You must be signed in to change notification settings - Fork 892
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-3367 Use subprocess.exec for Evergreen functions #1847
Conversation
API Change ReportNo changes found! |
@@ -1928,30 +1877,6 @@ task_groups: | |||
- command: expansions.update | |||
params: | |||
file: serverless-expansion.yml | |||
- command: shell.exec |
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.
CRYPT_SHARED_LIB_PATH is now part of serverless-expansion.yml
bash ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh | ||
binary: bash | ||
env: | ||
MONGODB_VERSION: ${VERSION} |
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.
Does the MONGODB_VERSION from run-orchestratin.sh cover this?
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.
Yes, the reason it isn't in include_expansions_in_env
is because the name of the variable is different.
GODRIVER-3367
Summary
Converts about half of the
shell.exec
functions tosuprocess.exec
.Background & Motivation
Follow Evergreen best practices.