Skip to content

workflow: add MacOS compile check #1

workflow: add MacOS compile check

workflow: add MacOS compile check #1

Workflow file for this run

name: macOS
on: [pull_request]
jobs:
compile-macOS:
runs-on: macos-latest
steps:
- name: Setup macOS
run: |
# Copied from mpi4py/mpi-publish
# create gfortran symlink
cd $(brew --prefix)/bin
gfortran=$(ls gfortran-* | sort | head -n 1)
sudo ln -s $gfortran gfortran
# install autotools
brew install autoconf
brew install automake
brew install libtool
# unlink libevent
brew unlink libevent || true
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build Open MPI
run: |
./autogen.pl
./configure
make -j $(sysctl -n hw.logicalcpu)