Browse Source

Adapt commands for tests with GNU make.

pull/3578/head
Markus Mützel Owen Rafferty 4 years ago
parent
commit
e0463ecbd1
No known key found for this signature in database GPG Key ID: A68B10E2554DEBCB
1 changed files with 8 additions and 4 deletions
  1. +8
    -4
      .github/workflows/dynamic_arch.yml

+ 8
- 4
.github/workflows/dynamic_arch.yml 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")


Loading…
Cancel
Save