Disable workflow telemetry and cache in all CI workflows#917
Open
ChrisRackauckas-Claude wants to merge 1 commit into
Open
Disable workflow telemetry and cache in all CI workflows#917ChrisRackauckas-Claude wants to merge 1 commit into
ChrisRackauckas-Claude wants to merge 1 commit into
Conversation
Pass `enable_telemetry: false` and `enable_cache: false` to every `LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main` call site (23 occurrences across 11 CI workflow files). These two features have been causing spurious CI job failures on the self-hosted SciML runners: - **Telemetry** (`catchpoint/workflow-telemetry-action@v2`): AxiosError 413 (payload too large) / 403 (auth) during post-job cleanup. The action annotates `##[error]` which marks the entire job as FAILURE even when all Julia tests pass. - **Cache** (`julia-actions/cache@v3`): `could not lock config file /home/chrisrackauckas/.gitconfig: File exists` and `uploadCacheArchiveSDK: Server failed to authenticate the request` when concurrent jobs on the same runner contest the depot lock or cache upload token. Both inputs were added to CommonCI.yml in LuxDL/Lux.jl#1695 (with defaults `true` for backward compatibility). Setting them explicitly to `false` here makes NonlinearSolve.jl CI resilient to the self-hosted runner environment regardless of any future default changes upstream. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.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.
Summary
Pass
enable_telemetry: falseandenable_cache: falseto everyLuxDL/Lux.jl/.github/workflows/CommonCI.yml@maincall site — 23 occurrences across all 11CI_*.ymlworkflow files.Why
Both features have been causing spurious CI job failures on the self-hosted SciML runners, most recently observed on #910 where 5+ jobs reported FAILURE despite
Testing … tests passed:Telemetry (
catchpoint/workflow-telemetry-action@v2):Cache (
julia-actions/cache@v3):The
enable_telemetryandenable_cacheinputs were added in LuxDL/Lux.jl#1695 (defaultstruefor backward compatibility with other consumers). Setting them explicitly tofalsehere makes NonlinearSolve.jl CI resilient to the self-hosted runner environment regardless of any future default changes upstream.Test plan
🤖 Generated with Claude Code