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: | run: |
case "${{ matrix.build }}" in case "${{ matrix.build }}" in
"make") "make")
echo "::group::Tests for BLAS" MAKE_FLAGS='DYNAMIC_ARCH=1 USE_OPENMP=0'
make blas-test echo "::group::Tests in 'test' directory"
make -C test $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
echo "::endgroup::" echo "::endgroup::"
echo "::group::Tests for LAPACK" echo "::group::Tests in 'ctest' directory"
make lapack-test 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::" echo "::endgroup::"
;; ;;
"cmake") "cmake")