-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Checkout entire git history in test-command #22184
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
5298498
Checkout entire git history
bnchrch 9521cec
Debug directory
bnchrch 6852d02
Use relative path
bnchrch d4da790
Test for path
bnchrch 8e78915
Search parent directories
bnchrch d496d77
Set current director to file
bnchrch e48d632
Add a few more debug statements
bnchrch 624bc23
Remove change dir
bnchrch 7e429da
Reenable qa-checks on master
bnchrch 285db31
Remove fetch depth and retest
bnchrch b7e67d0
Enable qa-checks
bnchrch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Oh, of course - the magic option was set to False...
Would this still work if we added back the
os.chdir('../../..')
?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.
This would not unfortunately.
The issue here came down to the file found it self in different directories and running contexts.
So change the directory via a relative path would always break one of
local
orec2
On
local
the paths were:On the
ec2
instance the paths were (taken from a workflow we ran):/actions-runner/_work/airbyte/airbyte
/actions-runner/_work/_tool/Python/3.9.16/x64/lib/python3.9/site-packages/ci_connector_ops/utils.py
So our best way seems to be relying on using the GitPython library to simply traverse up the directory structure until it finds a
.git
folderThere 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.
I wonder if we shall pass this repo path as an env var for a more explicit definition
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.
🤔 Thinking on that a bit. Perhaps if theres is a case where we would not be inside a git versioned directory.
@alafanechere Is there a context that might happen?