Adapt commands for tests with GNU make.

This commit is contained in:
Markus Mützel 2022-04-11 11:45:05 +02:00
parent b7873605d4
commit 430bea00ba
1 changed files with 8 additions and 4 deletions

View File

@ -121,11 +121,15 @@ jobs:
run: |
case "${{ matrix.build }}" in
"make")
echo "::group::Tests for BLAS"
make blas-test
MAKE_FLAGS='DYNAMIC_ARCH=1 USE_OPENMP=0'
echo "::group::Tests in 'test' directory"
make -C test $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
echo "::endgroup::"
echo "::group::Tests for LAPACK"
make lapack-test
echo "::group::Tests in 'ctest' directory"
make -C ctest $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
echo "::endgroup::"
echo "::group::Tests in 'utest' directory"
make -C utest $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
echo "::endgroup::"
;;
"cmake")