Migrate CI from Travis to GitHub Actions and add AGENTS.md#280
Merged
andreasnoack merged 7 commits intomasterfrom Mar 4, 2026
Merged
Migrate CI from Travis to GitHub Actions and add AGENTS.md#280andreasnoack merged 7 commits intomasterfrom
andreasnoack merged 7 commits intomasterfrom
Conversation
Replace .travis.yml with .github/workflows/ci.yml preserving the same compiler matrix (GCC 5/8, Clang 3.8/4.0/6.0) and build configuration. Add AGENTS.md for AI coding agent guidance with CLAUDE.md as a symlink. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
GCC 5/8 and Clang 3.8/4.0/6.0 are no longer packaged. Use GCC 12/14 and Clang 16/18 instead. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Set MPICH_CC/CXX/F77 env vars so MPI wrappers use the matrix compiler, and pass MPI_C_COMPILER/MPI_CXX_COMPILER/MPI_Fortran_COMPILER to CMake so FindMPI locates the MPICH wrappers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The old 2.8.11 minimum caused policies like CMP0056/CMP0066/CMP0067 to default to OLD, which broke FindMPI's try_compile WORKS test on modern CMake (3.28). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The bundled OpenBLAS build fails because its gfortran library search paths only cover GCC up to version 6. Installing a system BLAS/LAPACK avoids the fallback entirely. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The hardcoded GCC paths only covered versions up to 6. Use CMAKE_Fortran_IMPLICIT_LINK_DIRECTORIES instead, which works with any GCC version. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Clang 16 fails FindMPI's try_compile on ubuntu-latest. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace .travis.yml with .github/workflows/ci.yml preserving the same compiler matrix (GCC 5/8, Clang 3.8/4.0/6.0) and build configuration. Add AGENTS.md for AI coding agent guidance with CLAUDE.md as a symlink.