Remove old BLAS and LAPACK files #459
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: Modules | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
name: GALAHAD -- Check modules | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout GALAHAD | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install Meson and Ninja | |
run: pip install meson ninja | |
- name: Install compilers | |
uses: fortran-lang/setup-fortran@main | |
with: | |
compiler: "gcc" | |
version: "11" | |
- name: Setup GALAHAD | |
shell: bash | |
run: | | |
meson setup builddir_int32 --buildtype=debug -Dint64=false -Dssids=false -Dexamples=false -Dtests=false -Dlibblas= -Dliblapack= | |
meson setup builddir_int64 --buildtype=debug -Dint64=true -Dssids=false -Dexamples=false -Dtests=false -Dlibblas= -Dliblapack= | |
- name: Build GALAHAD | |
shell: bash | |
run: | | |
meson compile -C builddir_int32 | |
meson compile -C builddir_int64 | |
- name: Install Julia | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: 1 | |
arch: x64 | |
- name: Check the modules | |
run: julia --color=yes .github/julia/check_modules.jl |