From 4c24996b2903dc63c9e99d6951dc93a793562dd2 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Thu, 4 Jun 2026 22:46:45 -0400 Subject: [PATCH 1/2] ci: add Sublibrary CI via centralized project-model workflow This monorepo had no sublibrary CI, so its lib/* sublibraries were never tested. Add a thin caller of the centralized sublibrary-project-tests.yml, which lists lib/* and tests each via tests.yml project=lib/X. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/SublibraryCI.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/SublibraryCI.yml diff --git a/.github/workflows/SublibraryCI.yml b/.github/workflows/SublibraryCI.yml new file mode 100644 index 00000000..6cec66bb --- /dev/null +++ b/.github/workflows/SublibraryCI.yml @@ -0,0 +1,22 @@ +name: Sublibrary CI + +on: + pull_request: + branches: + - master + paths-ignore: + - 'docs/**' + push: + branches: + - master + paths-ignore: + - 'docs/**' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} + +jobs: + sublibraries: + uses: "SciML/.github/.github/workflows/sublibrary-project-tests.yml@v1" + secrets: "inherit" From 9f388dc7a8a10b3b6965ecf586938831e9f869c9 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Fri, 5 Jun 2026 08:28:48 -0400 Subject: [PATCH 2/2] =?UTF-8?q?ci:=20uniformize=20=E2=80=94=20add-DocPrevi?= =?UTF-8?q?ewCleanup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Part of bringing this repo onto the full centralized CI setup (SciML/.github @v1): remove retired CompatHelper (Dependabot drives [compat]) and/or add the centralized Documenter preview cleanup. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/DocPreviewCleanup.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/DocPreviewCleanup.yml diff --git a/.github/workflows/DocPreviewCleanup.yml b/.github/workflows/DocPreviewCleanup.yml new file mode 100644 index 00000000..7b694802 --- /dev/null +++ b/.github/workflows/DocPreviewCleanup.yml @@ -0,0 +1,17 @@ +name: Doc Preview Cleanup + +on: + pull_request: + types: [closed] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +permissions: + contents: write + +jobs: + doc-preview-cleanup: + uses: "SciML/.github/.github/workflows/docs-preview-cleanup.yml@v1" + secrets: "inherit"