-
Notifications
You must be signed in to change notification settings - Fork 420
spark-operator/2.1.0 package update #36333
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
Conversation
octo-sts
bot
commented
Dec 11, 2024
Signed-off-by: wolfi-bot <[email protected]>
|
Gen AI suggestions to solve the build error: • Detected Error: "no Go files in /home/build/cmd" • Error Category: Build Configuration • Failure Point: The go/build step attempting to build from ./cmd/ directory • Root Cause Analysis: The melange yaml file is pointing to ./cmd/ for the main build, but based on the repository structure and changelog (specifically "Move sparkctl to cmd directory" PR #2347), there appears to be a mismatch in the directory structure. • Suggested Fix: - uses: go/build
with:
packages: .
output: spark-operator• Explanation: • Additional Notes:
• References:
Alternatively, if you want to be more specific about the build target, you could use: - uses: go/build
with:
packages: .
package: github.com/kubeflow/spark-operator
output: spark-operatorThis should resolve the build error while maintaining the intended functionality. |
Signed-off-by: Debasish Biswas <[email protected]>
|
Gen AI suggestions to solve the build error: Based on the error log and context provided, I'll analyze and provide specific fixes: • Detected Error: • Error Category: Dependency/Version • Failure Point: During the • Root Cause Analysis: The specified Kubernetes version v1.30.3 doesn't exist yet (it's a future version). The latest stable release is v1.29.x. • Suggested Fix: - uses: go/bump
with:
deps: k8s.io/[email protected] golang.org/x/[email protected]• Explanation:
• Additional Notes:
• References:
The proposed fix aligns with Wolfi's principles of using up-to-date, stable versions while maintaining security and compatibility. |
In this release the upstream have moved its binaries main package file Signed-off-by: debasishbsws <[email protected]>