eec8c28fb3
Go Benchmark / Performance Regression Check (push) Has been cancelled
Cerberus Integration / Cerberus Security Stack Integration (push) Has been cancelled
Upload Coverage to Codecov / Backend Codecov Upload (push) Has been cancelled
Upload Coverage to Codecov / Frontend Codecov Upload (push) Has been cancelled
CodeQL - Analyze / CodeQL analysis (go) (push) Has been cancelled
CodeQL - Analyze / CodeQL analysis (javascript-typescript) (push) Has been cancelled
CrowdSec Integration / CrowdSec Bouncer Integration (push) Has been cancelled
Docker Build, Publish & Test / build-and-push (push) Has been cancelled
Quality Checks / Auth Route Protection Contract (push) Has been cancelled
Quality Checks / Codecov Trigger/Comment Parity Guard (push) Has been cancelled
Quality Checks / Backend (Go) (push) Has been cancelled
Quality Checks / Frontend (React) (push) Has been cancelled
Rate Limit integration / Rate Limiting Integration (push) Has been cancelled
Security Scan (PR) / Trivy Binary Scan (push) Has been cancelled
Supply Chain Verification (PR) / Verify Supply Chain (push) Has been cancelled
WAF integration / Coraza WAF Integration (push) Has been cancelled
Docker Build, Publish & Test / Security Scan PR Image (push) Has been cancelled
Repo Health Check / Repo health (push) Has been cancelled
History Rewrite Dry-Run / Dry-run preview for history rewrite (push) Has been cancelled
Prune Renovate Branches / prune (push) Has been cancelled
Renovate / renovate (push) Has been cancelled
Nightly Build & Package / sync-development-to-nightly (push) Has been cancelled
Nightly Build & Package / Trigger Nightly Validation Workflows (push) Has been cancelled
Nightly Build & Package / build-and-push-nightly (push) Has been cancelled
Nightly Build & Package / test-nightly-image (push) Has been cancelled
Nightly Build & Package / verify-nightly-supply-chain (push) Has been cancelled
Update GeoLite2 Checksum / update-checksum (push) Has been cancelled
Container Registry Prune / prune-ghcr (push) Has been cancelled
Container Registry Prune / prune-dockerhub (push) Has been cancelled
Container Registry Prune / summarize (push) Has been cancelled
Supply Chain Verification / Verify SBOM (push) Has been cancelled
Supply Chain Verification / Verify Release Artifacts (push) Has been cancelled
Supply Chain Verification / Verify Docker Image Supply Chain (push) Has been cancelled
Monitor Caddy Major Release / check-caddy-major (push) Has been cancelled
Weekly Nightly to Main Promotion / Verify Nightly Branch Health (push) Has been cancelled
Weekly Nightly to Main Promotion / Create Promotion PR (push) Has been cancelled
Weekly Nightly to Main Promotion / Trigger Missing Required Checks (push) Has been cancelled
Weekly Nightly to Main Promotion / Notify on Failure (push) Has been cancelled
Weekly Nightly to Main Promotion / Workflow Summary (push) Has been cancelled
Weekly Security Rebuild / Security Rebuild & Scan (push) Has been cancelled
54 lines
1.5 KiB
Markdown
Executable File
54 lines
1.5 KiB
Markdown
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][nightly-run]
|
|
|
|
Relevant log excerpt:
|
|
|
|
```text
|
|
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
|
|
|
|
[nightly-run]:
|
|
https://github.com/Wikid82/Charon/actions/runs/21503512215/job/61955865462
|