Skip to content

Commit eab3d94

Browse files
committed
try to fix paths
Signed-off-by: Nicolas Rol <[email protected]>
1 parent 942d850 commit eab3d94

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Diff for: .github/workflows/dev-ci.yml

+14
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,16 @@ jobs:
230230
echo "MPFR_INCLUDE_DIR=/mingw64/include" >> $GITHUB_ENV
231231
echo "MPFR_LIBRARY_DIR=/mingw64/lib" >> $GITHUB_ENV
232232
233+
- name: Show directory content
234+
run: |
235+
dir /s /b /o:gn $OPENBLAS_INCLUDE_DIR
236+
dir /s /b /o:gn $OPENBLAS_LIBRARY_DIR
237+
dir /s /b /o:gn $GMP_INCLUDE_DIR
238+
dir /s /b /o:gn $GMP_LIBRARY_DIR
239+
dir /s /b /o:gn $MPFR_INCLUDE_DIR
240+
dir /s /b /o:gn $MPFR_LIBRARY_DIR
241+
dir /s /b /o:gn $OPENBLAS_INCLUDE_DIR/openblas
242+
233243
- name: Configure 3rd parties
234244
run: >
235245
cmake -S ${{ github.workspace }}/metrix-simulator/external
@@ -240,6 +250,8 @@ jobs:
240250
-DGMP_LIBRARY_DIR=$GMP_LIBRARY_DIR
241251
-DMPFR_INCLUDE_DIR=$MPFR_INCLUDE_DIR
242252
-DMPFR_LIBRARY_DIR=$MPFR_LIBRARY_DIR
253+
-DBLA_VENDOR=OpenBLAS
254+
-DSUITESPARSE_USE_64BIT_BLAS=ON
243255
244256
- name: Build 3rd parties
245257
run: >
@@ -258,6 +270,8 @@ jobs:
258270
-DGMP_LIBRARY_DIR=$GMP_LIBRARY_DIR
259271
-DMPFR_INCLUDE_DIR=$MPFR_INCLUDE_DIR
260272
-DMPFR_LIBRARY_DIR=$MPFR_LIBRARY_DIR
273+
-DBLA_VENDOR=OpenBLAS
274+
-DSUITESPARSE_USE_64BIT_BLAS=ON
261275
262276
- name: Build
263277
run: cmake --build ${{ github.workspace }}/metrix-simulator/build --target install --parallel 2 --config Release

0 commit comments

Comments
 (0)