Skip to content

Merge branch 'install-gcc-fortan-in-mac-ci' into 'master' #7

Merge branch 'install-gcc-fortan-in-mac-ci' into 'master'

Merge branch 'install-gcc-fortan-in-mac-ci' into 'master' #7

Workflow file for this run

name: macos
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
BUILD_TYPE: Release
jobs:
macos-14:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Configure system
run: |
brew install cmake gcc gfortran open-mpi pkg-config fftw boost
gfortran --version
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}} --output-on-failure