Skip to content

Commit

Permalink
TEST MACOS INTEL
Browse files Browse the repository at this point in the history
Signed-off-by: Wenduo Wang <wenduwan@amazon.com>
  • Loading branch information
wenduwan committed Jul 19, 2024
1 parent 791a29a commit e2b88c0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/compile-macos-intel.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: MacOS(Intel)

on: [pull_request]

jobs:
compile-MacOS-Intel:
runs-on: macos-latest
steps:
- name: Setup MacOS
run: |
# 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

0 comments on commit e2b88c0

Please sign in to comment.