-
Notifications
You must be signed in to change notification settings - Fork 56
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
Update PR and Main Build for patched dependencies jobs #669
Conversation
…adding maven cache in pr buid for faster build
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## release/v1.32.x #669 +/- ##
==================================================
Coverage ? 50.73%
Complexity ? 264
==================================================
Files ? 39
Lines ? 1301
Branches ? 141
==================================================
Hits ? 660
Misses ? 609
Partials ? 32 ☔ View full report in Codecov by Sentry. |
.github/workflows/main-build.yml
Outdated
@@ -25,7 +25,7 @@ jobs: | |||
testpatch: | |||
name: Test patches applied to dependencies | |||
runs-on: aws-otel-java-instrumentation_ubuntu-latest_32-core | |||
if: ${{ startsWith(github.ref_name, 'release/v') }} | |||
if: ${{ hashFiles('.github/patches/**/opentelemetry-java-*.patch') != ''}} |
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.
if: ${{ hashFiles('.github/patches/**/opentelemetry-java-*.patch') != ''}} | |
if: ${{ hashFiles('.github/patches/**/opentelemetry-java-*.patch') != ''}} |
I don't think we need this conditional anymore. Running the patch action is a NOOP if no patch files exist.
closing pr as another relevant pr has been merged: #670 |
Issue #, if available:
Description of changes:
Creating PR to this release
v1.32.x
branch post v1.32.0 release but before merging tomain
, as merging tomain
has CI failure here.prbuild
to make subsequent pr builds faster.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.