Skip to content

Commit

Permalink
MacOS GitHub Actions Testing
Browse files Browse the repository at this point in the history
testing...
  • Loading branch information
marshallward committed Jan 4, 2024
1 parent 4e3c8d6 commit 5078542
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/actions/macos-setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: 'install-macos-prerequisites'

description: 'Install prerequisites for Mac OS compilation'

runs:
using: 'composite'

steps:
- name: Install macOS packages
shell: bash
run: |
echo "::group::Install packages"
brew reinstall gcc
brew install automake
brew install netcdf
brew install netcdf-fortran
brew install mpich
echo "::endgroup::"
# NOTE: Floating point exceptions are currently disabled due to an error in
# HDF5 1.4.3. They will be re-enabled when the default brew version has
# been updated to a working version.

- name: Set compiler flags
shell: bash
run: |
cd .testing
echo "FCFLAGS_DEBUG = -g -O0 -Wextra -Wno-compare-reals -fbacktrace -fcheck=bounds" >> config.mk
echo "FCFLAGS_REPRO = -g -O2 -fbacktrace" >> config.mk
echo "FCFLAGS_INIT = -finit-real=snan -finit-integer=2147483647 -finit-derived" >> config.mk
echo "FCFLAGS_FMS = -g -fbacktrace -O0" >> config.mk
cat config.mk
echo "::endgroup::"
20 changes: 20 additions & 0 deletions .github/workflows/macos-compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: MacOS Compilation Test

on: [push, pull_request]

jobs:
compile:

runs-on: macOS-latest

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- uses: ./.github/actions/macos-setup

- name: Compile models
run: make -j

# TODO: Run a few of the models and compare parameter.doc files?
File renamed without changes.

0 comments on commit 5078542

Please sign in to comment.