Some checks are pending
Go Benchmark / Performance Regression Check (push) Waiting to run
Cerberus Integration / Cerberus Security Stack Integration (push) Waiting to run
Upload Coverage to Codecov / Backend Codecov Upload (push) Waiting to run
Upload Coverage to Codecov / Frontend Codecov Upload (push) Waiting to run
CodeQL - Analyze / CodeQL analysis (go) (push) Waiting to run
CodeQL - Analyze / CodeQL analysis (javascript-typescript) (push) Waiting to run
CrowdSec Integration / CrowdSec Bouncer Integration (push) Waiting to run
Docker Build, Publish & Test / build-and-push (push) Waiting to run
Docker Build, Publish & Test / Security Scan PR Image (push) Blocked by required conditions
Quality Checks / Auth Route Protection Contract (push) Waiting to run
Quality Checks / Codecov Trigger/Comment Parity Guard (push) Waiting to run
Quality Checks / Backend (Go) (push) Waiting to run
Quality Checks / Frontend (React) (push) Waiting to run
Rate Limit integration / Rate Limiting Integration (push) Waiting to run
Security Scan (PR) / Trivy Binary Scan (push) Waiting to run
Supply Chain Verification (PR) / Verify Supply Chain (push) Waiting to run
WAF integration / Coraza WAF Integration (push) Waiting to run
1.5 KiB
Executable File
1.5 KiB
Executable File
Status: ✅ RESOLVED (January 30, 2026)
Summary
The nightly build failed during the GoReleaser release step while attempting to cross-compile for macOS.
Failure details
Run link: GitHub Actions run
Relevant log excerpt:
release failed after 4m19s
error=
build failed: exit status 1: go: downloading github.com/gin-gonic/gin v1.11.0
info: zig can provide libc for related target x86_64-macos.11-none
target=darwin_amd64_v1
The process '/opt/hostedtoolcache/goreleaser-action/2.13.3/x64/goreleaser'
failed with exit code 1
Root cause
GoReleaser failed while cross-compiling the darwin_amd64_v1 target using Zig to provide libc. The nightly workflow configures Zig for cross-compilation, so the failure is likely tied to macOS toolchain compatibility or dependencies.
Recommended fixes
- Ensure go.mod includes all platform-specific dependencies needed for macOS.
- Confirm Zig is installed and available in the runner environment.
- Update .goreleaser.yml to explicitly enable Zig for darwin builds.
- If macOS builds are not required, remove darwin targets from the build matrix.
- Review detailed logs for a specific Go or Zig error to pinpoint the failing package or build step.
Resolution
Fixed by updating .goreleaser.yml to properly configure Zig toolchain for macOS cross-compilation and ensuring all platform-specific dependencies are available.
References
- .github/workflows/nightly-build.yml
- .goreleaser.yml