fix: pin macOS desktop build to macos-13 to fix notarization network drop#47
Merged
Merged
Conversation
Update default container image reference across all deploy configs (AWS/GCP Terraform variables and Pulumi index.ts fallbacks) to use the canonical brainfishai/reasondb:latest image.
…drop The macos-latest runner now resolves to macos-15-arm64. Logs confirmed this runner loses its network route after ~47 min mid-notarization poll, causing the build to fail with NSURLErrorDomain Code=-1009 (offline). - Pin macOS runner from macos-latest to macos-13 (x86_64, Ventura) - Add timeout-minutes: 90 to fail fast if notarization stalls again
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The
build-desktopjob has been failing consistently across all recent releases (v0.5.3–v0.5.7). Pipeline log analysis confirmed the root cause:macos-latestrunner now resolves tomacos-15-arm64(as of the20260303.0188image)NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline."/_NSURLErrorNWPathKey=unsatisfied (No network route)while pollinghttps://appstoreconnect.apple.com/notary/v2/submissions/e95c8af5-...Fix
macos-13(x86_64, Ventura) — well-tested runner with stable networking for long-running jobs. Building a universal binary (aarch64 + x86_64) works fine from either architecture.timeout-minutes: 90— prevents silent 6-hour hangs if the runner issue recurs; surfaces a clear failure instead.Changes
.github/workflows/release.yml— runnermacos-latest→macos-13, addedtimeout-minutes: 90