Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
build-test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
Copy link

Copilot AI Apr 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Switching this job to an ARM runner changes the CPU architecture for everything below (notably the Build Go client (Docker) step). Since apps/client-go/Dockerfile.static does not set GOARCH, the produced byteroute-client will now be ARM64 instead of AMD64, so CI will no longer validate the AMD64 Docker build/binary. If you still need AMD64 validation/artifacts, consider either running a matrix over both architectures or pinning the Docker build platform (e.g., docker build --platform=linux/amd64 ...) and/or setting GOARCH explicitly in the Dockerfile.

Suggested change
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-24.04

Copilot uses AI. Check for mistakes.
services:
mongo:
image: mongo:8
Expand Down
Loading