From b1c38154490b2a3b5c2bb89d722e0a308f0437ed Mon Sep 17 00:00:00 2001 From: Dan Bonachea Date: Sun, 12 Apr 2026 20:23:15 -0700 Subject: [PATCH 1/2] CI: Add coverage for macos-26-intel --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a3e8c185..f6fe065c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ macos-14, macos-15, macos-15-intel, macos-26, ubuntu-24.04 ] + os: [ macos-14, macos-15, macos-15-intel, macos-26, macos-26-intel, ubuntu-24.04 ] compiler: [ gfortran ] version: [ 13, 14, 15 ] extra_flags: [ -g -O3 ] @@ -33,6 +33,9 @@ jobs: - os: macos-26 compiler: flang version: 22 + - os: macos-26-intel + compiler: flang + version: 22 # https://hub.docker.com/r/snowstep/llvm/tags - os: ubuntu-24.04 From 0224da941bccfc69065d7daa270dc0d1ee45a055 Mon Sep 17 00:00:00 2001 From: Dan Bonachea Date: Sun, 12 Apr 2026 20:26:08 -0700 Subject: [PATCH 2/2] CI: Add coverage for LFortran 0.62.0 --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f6fe065c0..3245c91fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,6 +95,11 @@ jobs: version: 0.61.0 container: phhargrove/lfortran:0.61.0-1 extra_flags: --separate-compilation --realloc-lhs-arrays + - os: ubuntu-24.04 + compiler: lfortran + version: 0.62.0 + container: phhargrove/lfortran:0.62.0-1 + extra_flags: --separate-compilation --realloc-lhs-arrays # https://github.com/lfortran/lfortran/pkgs/container/lfortran - os: ubuntu-22.04