Skip to content

Commit 8144a49

Browse files
authored
Merge pull request #3604 from mmuetzel/ci
Adapt commands for tests with GNU make.
2 parents b787360 + 430bea0 commit 8144a49

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/dynamic_arch.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,15 @@ jobs:
121121
run: |
122122
case "${{ matrix.build }}" in
123123
"make")
124-
echo "::group::Tests for BLAS"
125-
make blas-test
124+
MAKE_FLAGS='DYNAMIC_ARCH=1 USE_OPENMP=0'
125+
echo "::group::Tests in 'test' directory"
126+
make -C test $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
126127
echo "::endgroup::"
127-
echo "::group::Tests for LAPACK"
128-
make lapack-test
128+
echo "::group::Tests in 'ctest' directory"
129+
make -C ctest $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
130+
echo "::endgroup::"
131+
echo "::group::Tests in 'utest' directory"
132+
make -C utest $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
129133
echo "::endgroup::"
130134
;;
131135
"cmake")

0 commit comments

Comments
 (0)