Skip to content

Commit cd3d77a

Browse files
ChrisRackauckas-ClaudeChrisRackauckasclaude
authored
ci: uniformize onto centralized CI (project-model SublibraryCI + cleanup) (SciML#1216)
* ci(SublibraryCI): use centralized project-model workflow Replace the GROUP-dispatch sublibrary-tests.yml call (the root runtests.jl does not map GROUP to a sublibrary, so lib/* were not actually tested) with the centralized project-model sublibrary-project-tests.yml: list lib/* and test each via tests.yml project=lib/X. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * ci: uniformize — rm-CompatHelper add-DocPreviewCleanup 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 <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent c8125d8 commit cd3d77a

3 files changed

Lines changed: 24 additions & 37 deletions

File tree

.github/workflows/CompatHelper.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Doc Preview Cleanup
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
11+
permissions:
12+
contents: write
13+
14+
jobs:
15+
doc-preview-cleanup:
16+
uses: "SciML/.github/.github/workflows/docs-preview-cleanup.yml@v1"
17+
secrets: "inherit"

.github/workflows/SublibraryCI.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
name: Sublibrary CI
2+
23
on:
34
pull_request:
45
branches:
56
- master
67
paths-ignore:
7-
- "docs/**"
8+
- 'docs/**'
89
push:
910
branches:
1011
- master
1112
paths-ignore:
12-
- "docs/**"
13+
- 'docs/**'
14+
1315
concurrency:
1416
group: ${{ github.workflow }}-${{ github.ref }}
1517
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
18+
1619
jobs:
17-
sublibrary-ci:
18-
uses: "SciML/.github/.github/workflows/sublibrary-tests.yml@v1"
20+
sublibraries:
21+
uses: "SciML/.github/.github/workflows/sublibrary-project-tests.yml@v1"
1922
secrets: "inherit"

0 commit comments

Comments
 (0)