From fce88b1dabc685bbac5b1a1c022fe23d3490ddd8 Mon Sep 17 00:00:00 2001 From: Penelope Yong Date: Fri, 17 Jul 2026 07:29:12 +0800 Subject: [PATCH 1/4] Add testing on 1.13 --- .github/workflows/ci.yml | 4 ++++ .github/workflows/regression.yml | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3294f496..b7c4938da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,10 @@ jobs: - os: macos-latest version: '1' arch: aarch64 + # 1.13 + - os: ubuntu-latest + version: 'pre' + arch: x64 steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # 7.0.0 diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 5387fd4c1..a1795aa54 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -38,12 +38,18 @@ jobs: orgs: "SciML JuliaDiff JuliaStats TuringLang EnzymeAD" - orgs_label: Group3 orgs: "jump-dev trixi-framework oscar-system" + version: + - '1' + - 'pre' steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # 7.0.0 with: path: formatter - uses: julia-actions/setup-julia@fa02766e078afaaf09b14210362cee14137e6a32 # 3.0.2 + with: + version: ${{ matrix.version }} + - uses: julia-actions/cache@a45e8fa8be21c18a06b7177052533149e61e9b38 # 3.1.0 - name: Cache target repos From a52d804da42706c336e4b3d2325322311de58c4f Mon Sep 17 00:00:00 2001 From: Penelope Yong Date: Fri, 17 Jul 2026 07:49:07 +0800 Subject: [PATCH 2/4] name workflow better --- .github/workflows/regression.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index a1795aa54..b60db570b 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -17,7 +17,7 @@ concurrency: jobs: regression: - name: ${{ matrix.style }}-${{ matrix.orgs_label }} + name: ${{ matrix.style }}-${{ matrix.orgs_label }}-${{ matrix.version }} runs-on: ubuntu-latest timeout-minutes: 60 From 6946774bc962e36956e0b4c12adfbbfc392b4880 Mon Sep 17 00:00:00 2001 From: Penelope Yong Date: Fri, 17 Jul 2026 08:06:14 +0800 Subject: [PATCH 3/4] consolidate regression workflow --- .github/workflows/regression.yml | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index b60db570b..555c2ff14 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -17,27 +17,16 @@ concurrency: jobs: regression: - name: ${{ matrix.style }}-${{ matrix.orgs_label }}-${{ matrix.version }} + name: ${{ matrix.style }}-${{ matrix.version }} runs-on: ubuntu-latest timeout-minutes: 60 strategy: fail-fast: false matrix: - orgs_label: - - Group1 - - Group2 - - Group3 style: - default - blue - include: - - orgs_label: Group1 - orgs: "JuliaLang JuliaPlots MakieOrg" - - orgs_label: Group2 - orgs: "SciML JuliaDiff JuliaStats TuringLang EnzymeAD" - - orgs_label: Group3 - orgs: "jump-dev trixi-framework oscar-system" version: - '1' - 'pre' @@ -47,7 +36,7 @@ jobs: with: path: formatter - uses: julia-actions/setup-julia@fa02766e078afaaf09b14210362cee14137e6a32 # 3.0.2 - with: + with: version: ${{ matrix.version }} - uses: julia-actions/cache@a45e8fa8be21c18a06b7177052533149e61e9b38 # 3.1.0 @@ -57,15 +46,15 @@ jobs: uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # 6.1.0 with: path: target - key: repos-${{ matrix.orgs_label }}-${{ github.run_id }} + key: repos-${{ github.run_id }} restore-keys: | - repos-${{ matrix.orgs_label }}- + repos- - name: Clone target repos env: GH_TOKEN: ${{ github.token }} run: | - for org in ${{ matrix.orgs }}; do + for org in JuliaLang JuliaPlots MakieOrg SciML JuliaDiff JuliaStats TuringLang EnzymeAD jump-dev trixi-framework oscar-system; do for name in $(gh repo list "$org" --limit 1000 --json name,isFork,pushedAt --jq '.[] | select(((.name | endswith(".jl")) or .name == "julia") and (.isFork | not) and (.pushedAt >= "2024-01-01")) | .name'); do dest="target/$org/$name" [[ -d "$dest" ]] && continue From b98dbc901719dd0f2f8991fa43837b4578154cc0 Mon Sep 17 00:00:00 2001 From: Penelope Yong Date: Fri, 17 Jul 2026 08:27:21 +0800 Subject: [PATCH 4/4] Rework CI matrix --- .github/workflows/ci.yml | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7c4938da..fb327e290 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,33 +19,35 @@ jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} runs-on: ${{ matrix.os }} - # The default timeout for each job is 6 hours, we set it to 2 hours instead - # Long enough to tell us something's wrong, short enough to catch it early - timeout-minutes: 120 + timeout-minutes: 30 strategy: fail-fast: false matrix: version: - - '1.10' - - '1.11' - - '1.12' + - '1' os: - ubuntu-latest - windows-latest - - macos-15-intel # Intel (x64) runner + - macos-15-intel arch: - x64 include: - # Keep Windows x86 coverage if needed - - os: windows-latest - version: '1.10' - arch: x86 - # macOS ARM64 (Apple Silicon) + # Apple Silicon - os: macos-latest version: '1' arch: aarch64 - # 1.13 + # x86 + - os: windows-latest + version: '1' + arch: x86 + # Older and pre-release versions + - os: ubuntu-latest + version: '1.10' + arch: x64 + - os: ubuntu-latest + version: '1.11' + arch: x64 - os: ubuntu-latest version: 'pre' arch: x64