-
Notifications
You must be signed in to change notification settings - Fork 996
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
Fix java_release workflow by removing step without users/with #2067
Conversation
Signed-off-by: Achal Shah <achals@gmail.com>
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: achals The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Signed-off-by: Achal Shah <achals@gmail.com>
@@ -59,7 +58,7 @@ RegistryFile registryFile(FeastProperties feastProperties, ApplicationContext co | |||
return new S3RegistryFile(context.getBean(AmazonS3.class), registryPath); | |||
case "": | |||
case "file": | |||
return new LocalRegistryFile(Paths.get(registryPath)); | |||
return new LocalRegistryFile(registryPath); |
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.
Can you explain this change?
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.
Trying to address this error in java unit tests:
Error: /home/runner/work/feast/feast/java/serving/src/main/java/feast/serving/config/RegistryConfig.java:[62,47] incompatible types: java.nio.file.Path cannot be converted to java.lang.String
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.
Yeah, this is bug from my PR #2043, have no idea how it passed tests
Codecov Report
@@ Coverage Diff @@
## master #2067 +/- ##
===========================================
+ Coverage 58.21% 83.32% +25.11%
===========================================
Files 100 100
Lines 8077 8078 +1
===========================================
+ Hits 4702 6731 +2029
+ Misses 3375 1347 -2028
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Signed-off-by: Achal Shah <achals@gmail.com>
- name: Push image | ||
run: make push-${{ matrix.component }}-docker REGISTRY=${REGISTRY} VERSION=${RELEASE_VERSION} | ||
env: |
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.
what the point to duplicate env here?
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.
The bare env
version step up above is breaking the workflow: https://github.com/feast-dev/feast/actions/workflows/java_release.yml
Signed-off-by: Achal Shah achals@gmail.com
What this PR does / why we need it:
This has been broken for a few commits now: https://github.com/feast-dev/feast/actions/workflows/java_release.yml
Which issue(s) this PR fixes:
Fixes #
Does this PR introduce a user-facing change?: