Skip to content

Commit

Permalink
Update CI to remove macos-12, add macos-14 and ubuntu-24
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 committed May 28, 2024
1 parent 832569f commit 4ad54b8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,19 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-11, macos-12]
os: [ubuntu-22.04, ubuntu-24.04, macos-13, macos-14]
compiler: [gfortran-10, gfortran-11, gfortran-12, gfortran-13]
exclude:
- os: macos-11
compiler: gfortran-13
- os: macos-12
- os: macos-13
compiler: gfortran-10
- os: macos-14
compiler: gfortran-10
- os: ubuntu-24.04
compiler: gfortran-10
- os: ubuntu-24.04
compiler: gfortran-11
- os: ubuntu-22.04
compiler: gfortran-13

# fail-fast if set to 'true' here is good for production, but when
# debugging, set to 'false'. fail-fast means if *any* ci test in the matrix fails
Expand Down Expand Up @@ -65,12 +71,12 @@ jobs:
mkdir -p build
cd build
cmake .. -DCMAKE_Fortran_COMPILER=${FC} -DCMAKE_INSTALL_PREFIX=${HOME}/Software/pFlogger -DCMAKE_PREFIX_PATH=${HOME}/Software/GFE
make -j$(nproc)
make -j4
- name: Build Tests
run: |
cd build
make -j$(nproc) tests
make -j4 tests
- name: Run Tests
run: |
Expand Down Expand Up @@ -141,12 +147,12 @@ jobs:
mkdir -p build
cd build
cmake .. -DCMAKE_Fortran_COMPILER=${FC} -DCMAKE_INSTALL_PREFIX=${HOME}/Software/pFlogger -DCMAKE_PREFIX_PATH=${HOME}/Software/GFE
make -j$(nproc)
make -j4
- name: Build Tests
run: |
cd build
make -j$(nproc) tests
make -j4 tests
- name: Run Tests
run: |
Expand Down Expand Up @@ -197,12 +203,12 @@ jobs:
mkdir -p build
cd build
cmake .. -DCMAKE_Fortran_COMPILER=${FC} -DCMAKE_INSTALL_PREFIX=${HOME}/Software/pFlogger -DCMAKE_PREFIX_PATH=${HOME}/Software/GFE
make -j$(nproc)
make -j4
- name: Build Tests
run: |
cd build
make -j$(nproc) tests
make -j4 tests
- name: Run Tests
run: |
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Update CI to remove `macos-12`, add `macos-14` and `ubuntu-24.04`

## [1.15.0] - 2024-05-17

### Changed
Expand Down

0 comments on commit 4ad54b8

Please sign in to comment.