Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,16 @@ defaults:
shell: bash

jobs:
setup: # This job currently just exists to reduce cancelled job spam in PRs
name: Ignore me
runs-on: ubuntu-latest
steps:
- name: Resolve job concurrency
run: sleep 5

build:
name: ${{ matrix.compiler }}-${{ matrix.version }} (${{ matrix.os }})
needs: setup
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -116,26 +124,19 @@ jobs:
container: intel/fortran-essentials:2025.2.0-0-devel-ubuntu24.04

# --- LFortran coverage ---
# Formal now requires LFortran 0.64 or later

# https://hub.docker.com/r/phhargrove/lfortran/tags
- os: ubuntu-24.04
compiler: lfortran
version: 0.61.0
container: phhargrove/lfortran:0.61.0-1
- os: ubuntu-24.04
compiler: lfortran
version: 0.62.0
container: phhargrove/lfortran:0.62.0-1
- os: ubuntu-24.04
compiler: lfortran
version: 0.63.0
container: phhargrove/lfortran:0.63.0-1
#- os: ubuntu-24.04
# compiler: lfortran
# version: 0.63.0
# container: phhargrove/lfortran:0.64.0-1

# https://github.com/lfortran/lfortran/pkgs/container/lfortran
- os: ubuntu-22.04
compiler: lfortran
version: 0.63.0
container: ghcr.io/lfortran/lfortran:v0.63.0
#- os: ubuntu-22.04
# compiler: lfortran
# version: 0.64.0
# container: ghcr.io/lfortran/lfortran:v0.64.0
- os: ubuntu-22.04
compiler: lfortran
version: latest
Expand Down
Loading