Fix BLAS++ and LAPACK++ build #478
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: CMake | |
on: | |
push: | |
branches: | |
- master | |
- try-github-actions-for-windows | |
paths: | |
- .github/workflows/cmake.yml | |
- '**CMakeLists.txt' | |
- 'BLAS/**' | |
- 'CBLAS/**' | |
- 'CMAKE/**' | |
- 'INSTALL/**' | |
- 'LAPACKE/**' | |
- 'SRC/**' | |
- 'TESTING/**' | |
- '!**README' | |
- '!**Makefile' | |
- '!**md' | |
pull_request: | |
paths: | |
- .github/workflows/cmake.yml | |
- '**CMakeLists.txt' | |
- 'BLAS/**' | |
- 'CBLAS/**' | |
- 'CMAKE/**' | |
- 'INSTALL/**' | |
- 'LAPACKE/**' | |
- 'SRC/**' | |
- 'TESTING/**' | |
- '!**README' | |
- '!**Makefile' | |
- '!**md' | |
permissions: | |
contents: read | |
env: | |
CFLAGS: "-Wall -pedantic" | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test-install-release: | |
# Use GNU compilers | |
# The CMake configure and build commands are platform agnostic and should work equally | |
# well on Windows or Mac. You can convert this to a matrix build if you need | |
# cross-platform coverage. | |
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | |
runs-on: ${{ matrix.os }} | |
env: | |
BUILD_TYPE: Release | |
FFLAGS: ${{ matrix.fflags }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ macos-latest, ubuntu-latest, windows-latest ] | |
fflags: [ | |
"-Wall -Wno-unused-dummy-argument -Wno-unused-variable -Wno-unused-label -Werror=conversion -fimplicit-none -frecursive -fcheck=all", | |
"-Wall -Wno-unused-dummy-argument -Wno-unused-variable -Wno-unused-label -Werror=conversion -fimplicit-none -frecursive -fcheck=all -fopenmp" ] | |
steps: | |
- name: Checkout LAPACK | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- name: Install ninja-build tool | |
uses: seanmiddleditch/gha-setup-ninja@16b940825621068d98711680b6c3ff92201f8fc0 # v3 | |
- name: Use GCC-11 on MacOS | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: > | |
cmake -B build -G Ninja | |
-D CMAKE_C_COMPILER="gcc-11" | |
-D CMAKE_Fortran_COMPILER="gfortran-11" | |
-D USE_FLAT_NAMESPACE:BOOL=ON | |
- name: Special flags for Windows | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: > | |
cmake -B build -G Ninja | |
-D CMAKE_EXE_LINKER_FLAGS="-Wl,--stack=2097152" | |
- name: Configure CMake | |
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. | |
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type | |
run: > | |
cmake -B build -G Ninja | |
-D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
-D CMAKE_INSTALL_PREFIX=${{github.workspace}}/lapack_install | |
-D CBLAS:BOOL=ON | |
-D LAPACKE:BOOL=ON | |
-D BUILD_TESTING:BOOL=ON | |
-D LAPACKE_WITH_TMG:BOOL=ON | |
-D BUILD_SHARED_LIBS:BOOL=ON | |
- name: Build | |
# Execute tests defined by the CMake configuration. | |
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | |
run: cmake --build build --config ${{env.BUILD_TYPE}} | |
- name: Test with OpenMP | |
working-directory: ${{github.workspace}}/build | |
if: ${{ contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }} | |
run: ctest -C ${{env.BUILD_TYPE}} --schedule-random -j1 --output-on-failure --timeout 100 | |
- name: Test | |
working-directory: ${{github.workspace}}/build | |
if: ${{ !contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }} | |
run: ctest -C ${{env.BUILD_TYPE}} --schedule-random -j2 --output-on-failure --timeout 100 | |
- name: Install | |
run: cmake --build build --target install -j2 | |
coverage: | |
runs-on: ubuntu-latest | |
env: | |
BUILD_TYPE: Coverage | |
FFLAGS: "-fopenmp" | |
steps: | |
- name: Checkout LAPACK | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- name: Configure CMake | |
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. | |
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type | |
run: > | |
cmake -B build | |
-D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
-D CMAKE_INSTALL_PREFIX=${{github.workspace}}/lapack_install | |
-D CBLAS:BOOL=ON | |
-D LAPACKE:BOOL=ON | |
-D BUILD_TESTING:BOOL=ON | |
-D LAPACKE_WITH_TMG:BOOL=ON | |
-D BUILD_SHARED_LIBS:BOOL=ON | |
- name: Install | |
run: cmake --build build --target install -j2 | |
- name: Coverage | |
run: | | |
echo "Coverage" | |
cmake --build build --target coverage | |
bash <(curl -s https://codecov.io/bash) -X gcov | |
test-blaspp-flag: | |
runs-on: ubuntu-latest | |
env: | |
BUILD_TYPE: Release | |
FFLAGS: "-Wall -Wno-unused-dummy-argument -Wno-unused-variable -Wno-unused-label -Werror=conversion -fimplicit-none -frecursive -fcheck=all" | |
strategy: | |
fail-fast: false | |
matrix: | |
sharedlib: [ ON, OFF ] | |
blaspp: [ ON, OFF ] | |
lapackpp: [ ON, OFF ] | |
exclude: | |
- blaspp: OFF | |
lapackpp: OFF | |
steps: | |
- name: Checkout LAPACK | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- name: Install ninja-build tool | |
uses: seanmiddleditch/gha-setup-ninja@16b940825621068d98711680b6c3ff92201f8fc0 # v3 | |
- name: Install the Basics | |
# Adding some noise to the system: libopenblas-dev liblapack-dev should not | |
# be linked to BLAS++ or LAPACK++. | |
run: | | |
sudo apt update | |
sudo apt install -y cmake gfortran | |
# sudo apt purge libopenblas-dev liblapack-dev | |
- name: Configure CMake | |
run: > | |
cmake -B build -G Ninja | |
-D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
-D CMAKE_INSTALL_PREFIX=${{github.workspace}}/lapack_install | |
-D CBLAS:BOOL=OFF | |
-D LAPACKE:BOOL=OFF | |
-D BUILD_TESTING:BOOL=OFF | |
-D BUILD_SHARED_LIBS:BOOL=${{ matrix.sharedlib }} | |
-D BLAS++:BOOL=${{ matrix.blaspp }} | |
-D LAPACK++:BOOL=${{ matrix.lapackpp }} | |
- name: Build | |
run: cmake --build build --config ${{env.BUILD_TYPE}} | |
- name: Check dependencies when BLAS++ is ON | |
if: ${{ matrix.blaspp == 'ON' }} | |
working-directory: ${{github.workspace}}/build | |
run: | | |
if [[ ${{ matrix.sharedlib }} == 'ON' ]]; then | |
blaspp_blas=$(ldd lib/libblaspp.so | grep libblas.so | { grep -v grep || true; }) | |
if [[ -z $blaspp_blas || "$blaspp_blas" != *"${{github.workspace}}/build"* ]]; then | |
echo "BLAS++ dependency to BLAS is not correct!" | |
echo "ldd lib/libblaspp.so:" | |
ldd lib/libblaspp.so | |
exit 1 | |
fi | |
else | |
blaspp_blas=$(cat lib/blaspp/blasppConfig.cmake | grep -lblas | { grep -v grep || true; }) | |
if [[ -z $blaspp_blas ]]; then | |
echo "BLAS++ dependency to BLAS is not correct!" | |
echo "We could not find -lblas in lib/blaspp/blasppConfig.cmake" | |
exit 1 | |
fi | |
fi | |
- name: Check dependencies when LAPACK++ is ON | |
if: ${{ matrix.lapackpp == 'ON' }} | |
working-directory: ${{github.workspace}}/build | |
run: | | |
if [[ ${{ matrix.sharedlib }} == 'ON' ]]; then | |
lapackpp_lapack=$(ldd lib/liblapackpp.so | grep liblapack.so | { grep -v grep || true; }) | |
if [[ -z $lapackpp_lapack || $lapackpp_lapack != *"${{github.workspace}}/build"* ]]; then | |
echo "LAPACK++ dependency to LAPACK is not correct!" | |
echo "ldd lib/liblapackpp.so:" | |
ldd lib/liblapackpp.so | |
exit 1 | |
fi | |
else | |
lapackpp_lapack=$(cat lib/lapackpp/lapackppConfig.cmake | grep -llapack | { grep -v grep || true; }) | |
if [[ -z $lapackpp_lapack ]]; then | |
echo "LAPACK++ dependency to LAPACK is not correct!" | |
echo "We could not find -llapack in lib/lapackpp/lapackppConfig.cmake" | |
exit 1 | |
fi | |
fi | |
- name: Install | |
run: cmake --build build --target install -j2 |