try a target-specific build instead of dynamic_arch

This commit is contained in:
Martin Kroeker 2024-06-14 16:45:59 +02:00 committed by GitHub
parent 2c269c3694
commit d6494ca04f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -88,11 +88,11 @@ jobs:
run: |
case "${{ matrix.build }}" in
"make")
make -j$(nproc) DYNAMIC_ARCH=1 USE_OPENMP=0 CC=gcc-12 FC="ccache ${{ matrix.fortran }}"
make -j$(nproc) USE_OPENMP=0 CC=gcc-12 FC="ccache ${{ matrix.fortran }}"
;;
"cmake")
mkdir build && cd build
cmake -DDYNAMIC_ARCH=1 \
cmake -DDYNAMIC_ARCH=0 \
-DNOFORTRAN=0 \
-DBUILD_WITHOUT_LAPACK=0 \
-DCMAKE_VERBOSE_MAKEFILE=ON \