File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 7171
7272 # Build and test with built-in BLAS and LAPACK
7373 - name : Configure with CMake
74- if : ${{ contains(matrix.build, 'cmake') }}
74+ if : ${{ contains(matrix.build, 'cmake') && matrix.build != 'cmake-3.14' }}
7575 run : >-
7676 cmake -Wdev -G Ninja
7777 -DCMAKE_BUILD_TYPE=Release
8080 -DFIND_BLAS:STRING=FALSE
8181 -S . -B ${{ env.BUILD_DIR }}
8282
83+ - name : Configure with CMake 3.14
84+ if : ${{ matrix.build == 'cmake-3.14' }}
85+ run : >-
86+ cmake -Wdev
87+ -DCMAKE_BUILD_TYPE=Release
88+ -DCMAKE_MAXIMUM_RANK:String=4
89+ -DCMAKE_INSTALL_PREFIX=$PWD/_dist
90+ -DFIND_BLAS:STRING=FALSE
91+ -S . -B ${{ env.BUILD_DIR }}
92+
8393 - name : Build and compile
8494 if : ${{ contains(matrix.build, 'cmake') }}
8595 run : cmake --build ${{ env.BUILD_DIR }} --parallel
You can’t perform that action at this time.
0 commit comments