Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
15 changes: 9 additions & 6 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,15 @@ functions:
script: |
${PREPARE_SHELL}
rm -rf $DRIVERS_TOOLS
if [ "${project}" = "drivers-tools" ]; then
# 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
fi
git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS

# Pin drivers-evergreen-tools to revision 98f6b0e (Aug 20, 2025).
# In leu of cutting a dedicated branch, please cherry-pick any required changes inline.
# For example:
# git -C $DRIVERS_TOOLS checkout 98f6b0e
# git -C $DRIVERS_TOOLS cherry-pick <sha> # needed for <reason>
git -C $DRIVERS_TOOLS checkout 98f6b0e

echo "{ \"releases\": { \"default\": \"$MONGODB_BINARIES\" }}" > $MONGO_ORCHESTRATION_HOME/orchestration.config
- command: shell.exec
params:
Expand Down
3 changes: 3 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ repos:
hooks:
- id: markdown-link-check
exclude: ^(vendor)
# If the endpoint returns HTTP 429 (Too Many Requests), consider it a
# successful check.
args: ["-a 200,206,429"]

- repo: local
hooks:
Expand Down
Loading