Skip to content

Commit 151518d

Browse files
Add gitignore for the uv install on Evergreen (#931)
# Summary With #884 we started installing uv within the project directory on Evergreen to get around inconsistent uv versions across build hosts. However I forgot to gitignore it and now [the PCT bot added the uv installation artifacts to a commit](https://github.com/mongodb/mongodb-kubernetes/pull/904/changes#diff-1eee8299f11a78796551ad552091264702e7ecd712e4bafb694883031567cd51) from within a CI task. This change adds the uv installation directory to gitignore and cleans up the uv binaries that made their way into the repo. ## Proof of Work Passing lint task. ## Checklist - [ ] Have you linked a jira ticket and/or is the ticket in the title? - [ ] Have you checked whether your jira ticket required DOCSP changes? - [ ] Have you added changelog file? - use `skip-changelog` label if not needed - refer to [Changelog files and Release Notes](https://github.com/mongodb/mongodb-kubernetes/blob/master/CONTRIBUTING.md#changelog-files-and-release-notes) section in CONTRIBUTING.md for more details Co-authored-by: Maciej Karaś <maciej.karas@mongodb.com>
1 parent b68f0e7 commit 151518d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ __debug_bin*
3131
scripts/dev/contexts/private-context
3232
scripts/dev/contexts/private-context-*
3333

34+
# On Evergreen we install uv in the project directory, so make sure it's ignored
35+
/.uv
36+
3437
# These files get generated by emacs and sometimes they are still present when committing
3538
**/flycheck_*
3639

.uv/bin/uv

-56.3 MB
Binary file not shown.

.uv/bin/uvx

-345 KB
Binary file not shown.

0 commit comments

Comments
 (0)