feat: add 3 new error entries (runner-environment, silent-failures, known-unsolved)#407
Merged
Conversation
… x1, known-unsolved x1)
htekdev
added a commit
that referenced
this pull request
Jun 13, 2026
htekdev
added a commit
that referenced
this pull request
Jun 13, 2026
…1, runner-environment x1) (#408) * feat: add 4 new error entries (silent-failures, runner-environment x2, known-unsolved) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * feat: add 3 new error entries (caching-artifacts x1, known-unsolved x1, runner-environment x1) * fix: correct IDs to avoid collision with merged #406 and open #407 * fix: replace duplicate BusyBox tar ca-149 with GHES TLS cert error --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
New Error Entries — Strategy 4 (Runner Image Updates) Round 252
re-491 ·
windows-11-arm-llvm-libclang-x86-loadlibraryexw-failedCategory: runner-environment | Severity: error
Pre-installed LLVM on
windows-11-armis an x86_64 binary. Native ARM64 processes (Rust bindgen, clang-sys) fail withLoadLibraryExW failedwhen trying to loadlibclang.dll.Fix: Use
KyleMayes/install-llvm-action@v2with LLVM ≥20.1.0 (first version with ARM64 Windows prebuilts).Source: actions/runner-images#14085
sf-229 ·
windows-11-arm-platform-machine-returns-amd64-not-arm64Category: silent-failures | Severity: silent-failure
platform.machine()returns"AMD64"and$env:PROCESSOR_ARCHITECTUREreturns"AMD64"onwindows-11-armbecause the pre-installed Python/R are x86_64 WoW64 processes. Causes scripts to silently download x86_64 binaries instead of ARM64.Fix: Use
${{ runner.arch }}in workflow expressions or$env:PROCESSOR_IDENTIFIERin scripts.Source: actions/runner-images#14071, #14089
ku-140 ·
macos-xcode-simctl-all-ios-simulators-missing-intermittentCategory: known-unsolved | Severity: error
On certain macOS-15-arm64 image builds,
xcrun simctl list devices availablereturns empty iOS/tvOS/watchOS device sections. No in-workflow fix — only re-run resolves it.Source: actions/runner-images#12948