-
Notifications
You must be signed in to change notification settings - Fork 1
CI Cleanup #54
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
base: main
Are you sure you want to change the base?
CI Cleanup #54
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -15,6 +15,6 @@ public class CameraConstants { | |||||
| public static final double OBJECT_POSE_ESTIMATOR_DELETION_THRESHOLD_SECONDS = 0.5; | ||||||
| public static final ObjectDetectionCamera OBJECT_DETECTION_CAMERA = new ObjectDetectionCamera( | ||||||
| "ObjectDetectionCamera", | ||||||
| ROBOT_CENTER_TO_OBJECT_DETECTION_CAMERA | ||||||
| 0 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Type mismatch causes compilation failure. The constructor expects a Fix- 0
+ ROBOT_CENTER_TO_OBJECT_DETECTION_CAMERA📝 Committable suggestion
Suggested change
🧰 Tools🪛 GitHub Actions: Java CI with Gradle[error] 18-18: incompatible types: int cannot be converted to Transform3d. (Gradle compileJava error during ./gradlew build) |
||||||
| ); | ||||||
| } | ||||||
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.
🧹 Nitpick | 🔵 Trivial
Consider a more descriptive artifact name.
The failure-triggered artifact upload works correctly, but the name "reports" is generic. Consider something more specific like "build-reports" or "gradle-reports" for easier identification when multiple artifacts exist.
♻️ Suggested improvement
- name: Upload Build Artifacts if: failure() uses: actions/upload-artifact@v4 with: - name: reports + name: build-reports path: build/reports/📝 Committable suggestion