adding missing files #2234
No reviewers
Labels
No labels
1week
2weeks
Failed compliance check
IP cameras
NATS
Possible security concern
Review effort 1/5
Review effort 2/5
Review effort 3/5
Review effort 4/5
Review effort 5/5
UI
aardvark
accessibility
amd64
api
arm64
auth
back-end
bgp
blog
bug
build
checkers
ci-cd
cleanup
cnpg
codex
core
dependencies
device-management
documentation
duplicate
dusk
ebpf
enhancement
eta 1d
eta 1hr
eta 3d
eta 3hr
feature
fieldsurvey
github_actions
go
good first issue
help wanted
invalid
javascript
k8s
log-collector
mapper
mtr
needs-triage
netflow
network-sweep
observability
oracle
otel
plug-in
proton
python
question
reddit
redhat
research
rperf
rperf-checker
rust
sdk
security
serviceradar-agent
serviceradar-agent-gateway
serviceradar-web
serviceradar-web-ng
siem
snmp
sysmon
topology
ubiquiti
wasm
wontfix
zen-engine
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
carverauto/serviceradar!2234
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "refs/pull/2234/head"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Imported from GitHub pull request.
Original GitHub pull request: #1654
Original author: @mfreeman451
Original URL: https://github.com/carverauto/serviceradar/pull/1654
Original created: 2025-09-23T16:20:09Z
Original updated: 2025-09-23T16:21:27Z
Original head: carverauto/serviceradar:updates/bazel_worksapces
Original base: main
Original merged: 2025-09-23T16:20:17Z by @mfreeman451
PR Type
Other
Description
Add Bazel platform definitions for multi-arch builds
Create WORKSPACE files for third-party dependencies
Configure remote execution platforms for BuildBuddy
Diagram Walkthrough
File Walkthrough
BUILD.bazel
Multi-arch platform definitions for Bazel buildsplatforms/BUILD.bazel
WORKSPACE
Empty WORKSPACE for cwalk dependencythird_party/cwalk/WORKSPACE
WORKSPACE
Empty WORKSPACE for tools_opam dependencythird_party/vendor/tools_opam/WORKSPACE
Imported GitHub PR comment.
Original author: @qodo-code-review[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1654#issuecomment-3324716914
Original created: 2025-09-23T16:20:29Z
PR Reviewer Guide 🔍
Here are some key observations to aid the review process:
Config Consistency
Verify the constraint values and naming align with your toolchains and transition settings (e.g., that targets/toolchains are actually registered against these cpu/os constraints and remote exec platforms), to avoid platform mismatch errors during builds.
Exec Properties
Confirm the BuildBuddy execution properties keys and values match your RBE instance (container image, OSFamily/Arch naming, dockerNetwork/Pool). Mismatched keys may be ignored or cause scheduling issues.
Imported GitHub PR comment.
Original author: @qodo-code-review[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1654#issuecomment-3324722032
Original created: 2025-09-23T16:21:27Z
PR Code Suggestions ✨
Explore these optional code suggestions:
Pin container image for reproducible builds
Pin the
container-imageto a specific version or digest instead of using the:latesttag in theexec_propertiesfor bothrbe_linux_amd64andrbe_linux_arm64platforms to ensure reproducible builds.
platforms/BUILD.bazel [49-71]
[To ensure code accuracy, apply this suggestion manually]Suggestion importance[1-10]: 8
__
Why: The suggestion correctly identifies that using the
:latesttag for thecontainer-imageundermines build reproducibility, which is a critical concern for build systems like Bazel. Pinning the image to a specific version or digest is a best practice that significantly improves build stability.