We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b787360 commit 430bea0Copy full SHA for 430bea0
.github/workflows/dynamic_arch.yml
@@ -121,11 +121,15 @@ jobs:
121
run: |
122
case "${{ matrix.build }}" in
123
"make")
124
- echo "::group::Tests for BLAS"
125
- make blas-test
+ MAKE_FLAGS='DYNAMIC_ARCH=1 USE_OPENMP=0'
+ echo "::group::Tests in 'test' directory"
126
+ make -C test $MAKE_FLAGS FC="ccache ${{ matrix.fortran }}"
127
echo "::endgroup::"
- echo "::group::Tests for LAPACK"
128
- make lapack-test
+ 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 }}"
133
134
;;
135
"cmake")
0 commit comments