Skip to content

Commit

Permalink
main.yml: add gcc 14 testing (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderRichert-NOAA authored Oct 4, 2024
1 parent d9663af commit ce18945
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,21 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
env:
FC: gfortran
CC: gcc
runs-on: ubuntu-24.04
strategy:
matrix:
gcc-version: [12,14]

steps:

- name: get-gcc
run: |
if [ -z $(type -P gcc-${{ matrix.gcc-version }}) ]; then
sudo apt-get install gcc-${{ matrix.gcc-version }}
fi
echo "CC=gcc-${{ matrix.gcc-version }}" >> $GITHUB_ENV
echo "FC=gfortran-${{ matrix.gcc-version }}" >> $GITHUB_ENV
- name: checkout-pfunit
uses: actions/checkout@v4
with:
Expand All @@ -21,7 +29,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/pfunit
key: pfunit-${{ runner.os }}-gcc-1
key: pfunit-${{ runner.os }}-gcc${{ matrix.gcc-version }}-1

- name: build-pfunit
if: steps.cache-pfunit.outputs.cache-hit != 'true'
Expand Down

0 comments on commit ce18945

Please sign in to comment.