Use matrirx for msys2 #17
Workflow file for this run
This file contains 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
name: CI | |
on: push | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-13] | |
toolchain: | |
- { compiler: gcc, version: "13" } | |
- { compiler: intel, version: "2024.1" } | |
- { compiler: intel-classic, version: "2021.12" } | |
exclude: | |
- os: macos-13 | |
toolchain: { compiler: intel, version: "2024.1" } | |
- os: macos-13 | |
toolchain: { compiler: intel-classic, version: "2021.12" } | |
include: | |
- os: ubuntu-latest | |
toolchain: { compiler: nvidia-hpc, version: "23.11" } | |
- os: macos-13 | |
toolchain: { compiler: intel-classic, version: "2021.10" } | |
- os: windows-latest | |
toolchain: { compiler: gcc, version: "13" } | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: fortran-lang/setup-fortran@v1 | |
id: setup-fortran | |
with: | |
compiler: ${{ matrix.toolchain.compiler }} | |
version: ${{ matrix.toolchain.version }} | |
- name: macos workaround | |
if: runner.os == 'macos' | |
run: brew install gcc@10 | |
- uses: fortran-lang/setup-fpm@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: fpm test | |
test-msys2: | |
strategy: | |
matrix: | |
msystem: [mingw64, ucrt64] | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{ matrix.msystem }} | |
install: >- | |
mingw-w64-x86_64-gcc-fortran | |
mingw-w64-x86_64-fpm | |
- run: fpm test | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Check formatting | |
run: | | |
pip install fprettify | |
diff=$(fprettify -i 2 -r . -d) | |
if [[ $diff ]]; then | |
red="\033[0;31m" | |
cyan="\033[0;36m" | |
reset="\033[0m" | |
printf -- "$diff\n" | |
printf "${red}The code is not correctly formatted. Please run: ${reset}\n" | |
printf "${cyan}fprettify -i 2 -r .${reset}\n" | |
exit 1 | |
fi |