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
14 changes: 10 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ macos-14, macos-15, macos-15-intel, macos-26, macos-26-intel, ubuntu-24.04 ]
os: [ macos-14, macos-15, macos-15-intel, macos-26, macos-26-intel, ubuntu-24.04, ubuntu-26.04-arm ]
compiler: [ gfortran ]
version: [ 13, 14, 15, 16 ] # Julienne supports GFortran 13+
extra_flags: [ -g -O3 ]
Expand Down Expand Up @@ -72,6 +72,10 @@ jobs:
container: snowstep/llvm:ubuntu-22.04-latest

# https://hub.docker.com/r/phhargrove/llvm-flang/tags
- os: ubuntu-24.04
compiler: flang
version: 23
container: phhargrove/llvm-flang:23.1.0_rc2-latest
- os: ubuntu-24.04
compiler: flang
version: 22
Expand Down Expand Up @@ -241,17 +245,19 @@ jobs:
fi

- name: Setup FPM
if: ${{ !(runner.os == 'Linux' && runner.arch == 'ARM64') }}
uses: fortran-lang/setup-fpm@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fpm-version: latest

- name: Build FPM
if: false
if: ${{ runner.os == 'Linux' && runner.arch == 'ARM64' }}
run: |
curl --retry 5 -LOsS https://github.com/fortran-lang/fpm/releases/download/v0.11.0/fpm-0.11.0.F90
export FPM_VERSION=0.13.0
curl --retry 5 -LOsS https://github.com/fortran-lang/fpm/releases/download/v$FPM_VERSION/fpm-$FPM_VERSION.F90
mkdir fpm-temp
gfortran-14 -o fpm-temp/fpm fpm-0.11.0.F90
gfortran-14 -o fpm-temp/fpm fpm-$FPM_VERSION.F90
echo "PATH=`pwd`/fpm-temp:${PATH}" >> "$GITHUB_ENV"

- name: Version info
Expand Down