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
17 changes: 15 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ macos-14, macos-15, macos-15-intel, macos-26, ubuntu-24.04 ]
os: [ macos-14, macos-15, macos-15-intel, macos-26, macos-26-intel, ubuntu-24.04 ]
compiler: [ gfortran ]
version: [ 13, 14, 15 ]
network: [ smp ]
Expand Down Expand Up @@ -48,6 +48,13 @@ jobs:
brew_via_install: 1
native_multi_image: 1
FFLAGS: -fcoarray
- os: macos-26-intel
compiler: flang
version: 22
network: smp
brew_via_install: 1
native_multi_image: 1
FFLAGS: -fcoarray

# https://hub.docker.com/r/snowstep/llvm/tags
- os: ubuntu-24.04
Expand Down Expand Up @@ -126,6 +133,12 @@ jobs:
network: udp
native_multi_image: 1
FFLAGS: -fcoarray
- os: macos-26-intel
compiler: flang
version: 22
network: udp
native_multi_image: 1
FFLAGS: -fcoarray
- os: macos-26
compiler: flang
version: 22
Expand Down Expand Up @@ -180,7 +193,7 @@ jobs:
echo "CC=gcc-${COMPILER_VERSION}" >> "$GITHUB_ENV"
echo "CXX=g++-${COMPILER_VERSION}" >> "$GITHUB_ENV"
# XCode 26 / gfortran bug workaround
if test ${{ matrix.os }} = 'macos-26' ; then \
if [[ ${{ matrix.os }} =~ macos-26 ]] ; then \
echo "GASNET_CONFIGURE_ARGS=$GASNET_CONFIGURE_ARGS --enable-force-posix-realtime" >> "$GITHUB_ENV" ; \
fi

Expand Down
Loading