-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Add Gradle's 'assemble' check to catch the distribution generation issues #8924
Conversation
04122f1
to
bb841c2
Compare
Gradle Check (Jenkins) Run Completed with:
|
bb841c2
to
4eabd76
Compare
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
4eabd76
to
06b8622
Compare
Gradle Check (Jenkins) Run Completed with:
|
50a783e
to
24ecb13
Compare
Gradle Check (Jenkins) Run Completed with:
|
24ecb13
to
89a71a0
Compare
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
89a71a0
to
bc94adb
Compare
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
@@ Coverage Diff @@
## main #8924 +/- ##
============================================
+ Coverage 71.06% 71.07% +0.01%
+ Complexity 57314 57280 -34
============================================
Files 4766 4765 -1
Lines 270453 270385 -68
Branches 39555 39546 -9
============================================
- Hits 192197 192185 -12
+ Misses 62045 61979 -66
- Partials 16211 16221 +10
|
bc94adb
to
765d86d
Compare
@reta I like the intent here for sure! In the name of frugality, are we duplicating the compilation that is being done for these platforms in |
Thanks a lot @andrross , yes, we do duplicate compilation and javadoc (at least)
The problem with
What do you think? |
765d86d
to
b6ab37c
Compare
Gradle Check (Jenkins) Run Completed with:
|
b6ab37c
to
c8ed39e
Compare
Gradle Check (Jenkins) Run Completed with:
|
c8ed39e
to
f6643cf
Compare
Gradle Check (Jenkins) Run Completed with:
|
@reta In some brief testing on my Ubuntu machine, doing
|
f6643cf
to
9d86c88
Compare
Gradle Check (Jenkins) Run Completed with:
|
9d86c88
to
a911bfa
Compare
Gradle Check (Jenkins) Run Completed with:
|
…sues Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
a911bfa
to
7dd8259
Compare
Compatibility status:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/backport-2.x
# Create a new branch
git switch --create backport/backport-8924-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 63367a72a48ec7aa7a7c48a27d3adbeef17f6059
# Push it to GitHub
git push --set-upstream origin backport/backport-8924-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/backport-2.x Then, create a pull request where the |
…sues (opensearch-project#8924) Signed-off-by: Andriy Redko <andriy.redko@aiven.io> (cherry picked from commit 63367a7)
…sues (opensearch-project#8924) Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: Kaushal Kumar <ravi.kaushal97@gmail.com>
…sues (opensearch-project#8924) Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: Ivan Brusic <ivan.brusic@flocksafety.com>
…sues (opensearch-project#8924) Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: Shivansh Arora <hishiv@amazon.com>
Description
Add Gradle's 'assemble' check to catch the distribution generation issues
Related Issues
Related to #8903
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.