CI (MSYS2): Configure with `-DCMAKE_BUILD_TYPE=Release`.

This commit is contained in:
Markus Mützel 2022-09-01 14:35:12 +02:00
parent 934a0e5397
commit 594ceeceda
1 changed files with 3 additions and 1 deletions

View File

@ -235,7 +235,8 @@ jobs:
- name: Configure OpenBLAS
run: |
mkdir build && cd build
cmake -DBUILD_SHARED_LIBS=ON \
cmake -DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_STATIC_LIBS=ON \
-DDYNAMIC_ARCH=ON \
-DUSE_THREAD=ON \
@ -258,6 +259,7 @@ jobs:
timeout-minutes: 60
run: cd build && ctest
cross_build:
runs-on: ubuntu-22.04