Browse Source

Merge pull request #3604 from mmuetzel/ci

Adapt commands for tests with GNU make.
tags/v0.3.21
Martin Kroeker GitHub 4 years ago
parent
commit
8144a498ad
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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