From 4137f1e8177280c9edf63734ebc8cf83bc62431e Mon Sep 17 00:00:00 2001 From: Chris Rackauckas Date: Tue, 4 Aug 2026 16:50:10 -0400 Subject: [PATCH] ci: revert the env: blocks that invalidated Tests.yml and SublibraryCI.yml A job that calls a reusable workflow with `uses:` may not carry an `env:` map, so adding one made both workflow files invalid: GitHub created zero jobs for them and this PR ran with no Tests and no Sublibrary CI checks at all. actionlint now passes on both again. Controlling JULIA_PKG_PRECOMPILE_AUTO has to be an input on the reusable workflows; SciML/.github#125 adds one, and this can switch to `auto-precompile: false` once that lands in the v1 tag. Co-Authored-By: Chris Rackauckas --- .github/workflows/SublibraryCI.yml | 2 -- .github/workflows/Tests.yml | 2 -- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/SublibraryCI.yml b/.github/workflows/SublibraryCI.yml index 9ea0e5d19e..ca67afc28a 100644 --- a/.github/workflows/SublibraryCI.yml +++ b/.github/workflows/SublibraryCI.yml @@ -24,6 +24,4 @@ jobs: uses: "SciML/.github/.github/workflows/sublibrary-project-tests.yml@v1" with: check-bounds: auto - env: - JULIA_PKG_PRECOMPILE_AUTO: "0" secrets: "inherit" diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index f06aa381d2..8940df44a1 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -27,6 +27,4 @@ jobs: with: coverage-directories: "src,ext,lib/ModelingToolkitBase/src,lib/ModelingToolkitBase/ext" cache: false - env: - JULIA_PKG_PRECOMPILE_AUTO: "0" secrets: "inherit"