Skip to content

Commit

Permalink
ci add gcc 14
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed May 21, 2024
1 parent 798a2eb commit f8b100f
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ on:

jobs:

unix:

gcc-new:
strategy:
matrix:
os: [ubuntu-latest]
fc: [9, 10, 11, 12, 13]
os: [ubuntu-24.04]
fc: [12, 13, 14]
include:
- os: macos-latest
fc: 13
Expand All @@ -44,6 +45,28 @@ jobs:
- run: cmake --workflow --preset debug
- run: cmake --workflow --preset release


gcc-old:
strategy:
matrix:
os: [ubuntu-22.04]
fc: [9, 10, 11]

runs-on: ${{ matrix.os }}

env:
FC: gfortran-${{ matrix.fc }}

steps:
- uses: actions/checkout@v4

- name: install Ninja
run: sudo apt install --no-install-recommends ninja-build

- run: cmake --workflow --preset debug
- run: cmake --workflow --preset release


windows:
runs-on: windows-latest
timeout-minutes: 10
Expand Down

0 comments on commit f8b100f

Please sign in to comment.