Merge pull request #3604 from mmuetzel/ci

Adapt commands for tests with GNU make.
This commit is contained in:
Martin Kroeker 2022-04-11 19:31:26 +02:00 committed by GitHub
commit 8144a498ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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")