-
Notifications
You must be signed in to change notification settings - Fork 143
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 Jenkins CI pipeline for OS 3.0 version bump #901
Conversation
Signed-off-by: Sicheng Song <[email protected]>
Signed-off-by: Sicheng Song <[email protected]>
Signed-off-by: Sicheng Song <[email protected]>
Thanks @b4sjoo can you add a test so that ./gradlew publishAllPublicationsToStagingRepository can be properly tested in github checks? |
Signed-off-by: Sicheng Song <[email protected]>
Build is failing due to opensearch-project/OpenSearch#7508 |
@peterzhuamazon Sure will do. But for now there are more breaking changes to go. We will add them once we saw a success Jenkin build. |
Codecov Report
@@ Coverage Diff @@
## main #901 +/- ##
============================================
+ Coverage 84.76% 84.80% +0.03%
- Complexity 1630 1632 +2
============================================
Files 135 135
Lines 6079 6079
Branches 596 596
============================================
+ Hits 5153 5155 +2
+ Misses 668 666 -2
Partials 258 258
Flags with carried forward coverage won't be shown. Click here to find out more.
|
@b4sjoo can you please also address call to non-existent method at plugin/src/main/java/org/opensearch/ml/cluster/DiscoveryNodeHelper.java. Line 41:
but that method got removed from core: we detected it in neural-search CI, it's failing due to mentioned call: |
This PR fixed the issue #891 and unblock the Jenkins CI from our side. |
@jngz-es @b4sjoo @rbhavna can someone add the |
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
cd .worktrees/backport-2.x
# Create a new branch
git switch --create backport/backport-901-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 dd54ea59add6004db2afefb676b35daadfe9ac6d
# Push it to GitHub
git push --set-upstream origin backport/backport-901-to-2.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.x Then, create a pull request where the |
@acarbonetto #1018 should unblock SQL team. Are you still facing with a CI block? |
This PR is for |
Correct. It looks like ml-commons munged the Strings refactor with the removal of ImmutableOpenMap. We can either tease those apart here in the backport, or we can wait for the Strings refactor PR to be backported to core. The quicker I can get a core reviewer to approve those backport PRs the quicker they will merge. Going the former route will fix the build back to green. Going the latter route will keep the build red until the backport PRs are merged. |
OK it seems the String refactor backport PR merged. Let's get it fixed. |
Description
Jenkins CI workflow on OS 3.0 failed with message:
https://build.ci.opensearch.org/job/distribution-build-opensearch/7856/console
Issues Resolved
This is a following up fix on #891
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.