Description
The Downgrade CI workflow has been disabled (if: false) because downgrade tests fail during MTK precompilation with minimum dependency versions.
The root cause is that StaticArrays fails to precompile with require_one_based_indexing not defined when resolved to minimum compatible versions, which cascades to SymbolicUtils, DomainSets, and other dependencies.
Current State
The workflow was previously set to continue-on-error: true but has now been fully disabled (matching the approach used by DelayDiffEq.jl) since the failure is upstream and not actionable.
To Re-enable
Once the upstream dependency compatibility issues are resolved (likely requires compat bounds updates for StaticArrays or related packages), re-enable by changing if: false back to removing that line in .github/workflows/Downgrade.yml.
Related
Description
The Downgrade CI workflow has been disabled (
if: false) because downgrade tests fail during MTK precompilation with minimum dependency versions.The root cause is that
StaticArraysfails to precompile withrequire_one_based_indexingnot defined when resolved to minimum compatible versions, which cascades toSymbolicUtils,DomainSets, and other dependencies.Current State
The workflow was previously set to
continue-on-error: truebut has now been fully disabled (matching the approach used by DelayDiffEq.jl) since the failure is upstream and not actionable.To Re-enable
Once the upstream dependency compatibility issues are resolved (likely requires compat bounds updates for StaticArrays or related packages), re-enable by changing
if: falseback to removing that line in.github/workflows/Downgrade.yml.Related