Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 22 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ jobs:
compiler: [ gcc ]
version: [ 12, 13, 14, 15, 16 ]

exclude:

# Homebrew removed Intel bottles for gcc@16
- os: macos-15-intel
version: 16
- os: macos-26-intel
version: 16

include:
- os: ubuntu-24.04
conduits: &ubuntu_conduits [ mpi, ibv, ofi, ucx ]
Expand All @@ -73,21 +81,18 @@ jobs:

# --- LLVM clang coverage ---

- os: macos-14
compiler: clang
version: 23
- os: macos-15
compiler: clang
version: 23
- os: macos-26
compiler: clang
version: 23
- os: macos-15-intel
compiler: clang
version: 23
- os: macos-26-intel
compiler: clang
version: 23
#- os: macos-15-intel
# compiler: clang
# version: 23
#- os: macos-26-intel
# compiler: clang
# version: 23

# https://hub.docker.com/r/phhargrove/llvm-flang/tags
- os: ubuntu-24.04
Expand Down Expand Up @@ -271,8 +276,14 @@ jobs:
if [[ ${{ matrix.compiler }} == 'gcc' && ${COMPILER_VERSION} -gt 15 ]] ; then
brew install gcc@${COMPILER_VERSION}
fi
brew install libfabric openmpi
echo "CONFIGURE_ARGS=$CONFIGURE_ARGS --enable-ofi --enable-mpi" >> "$GITHUB_ENV"
if [[ ${{ runner.arch }} == "ARM64" ]] ; then
# openmpi depends on gcc@latest which only has ARM64 bottles on macOS
brew install libfabric openmpi
echo "CONFIGURE_ARGS=$CONFIGURE_ARGS --enable-ofi --enable-mpi" >> "$GITHUB_ENV"
else
brew install libfabric
echo "CONFIGURE_ARGS=$CONFIGURE_ARGS --enable-ofi" >> "$GITHUB_ENV"
fi


- name: Install LLVM on macOS
Expand Down
Loading