-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Airbyte-ci: Ensure we set the working directory earlier #34136
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
Oh! This makes more sense than hidden dir magic, or is that still something to watch out for? |
@evantahler Still technically an issue But only if we need to keep a hidden folder and ignore a path inside of it. |
2603af8
to
0a65e41
Compare
/approve-and-merge reason="format and test pass locally, but fail in due to a known issue with dagger" |
@@ -0,0 +1,57 @@ | |||
import logging |
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.
Missing license header 😄
Problem
Globs we use for exclude were being evaluated before the working directory was set.
Leading to files that should be excluded appearing in dagger containers if the
airbyte-ci
commmand was not run from rootQuick Solution
Hoist the function call higher
closes #34070