Skip to content

Commit f12b14f

Browse files
committed
test mingw on windows
1 parent f02c605 commit f12b14f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/CI_test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,20 @@ jobs:
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636

37+
- name: Install LAPACK and BLAS
38+
if: matrix.os == 'ubuntu-latest'
39+
run: |
40+
sudo apt-get update
41+
sudo apt-get install -y liblapack-dev libblas-dev
42+
43+
- name: Install LAPACK and BLAS
44+
if: matrix.os == 'windows-latest'
45+
run: |
46+
choco install mingw
47+
choco install mingw-make
48+
choco install mingw-w64-x86_64-lapack
49+
choco install mingw-w64-x86_64-blas
50+
3751
- name: Setup Fortran Compiler
3852
uses: fortran-lang/setup-fortran@main
3953
id: setup-fortran

0 commit comments

Comments
 (0)