Skip to content

Commit

Permalink
Add the BLAS / LAPACK dependency for Windows into the CI file
Browse files Browse the repository at this point in the history
Changes courtesy of @Vindaar.
  • Loading branch information
AngelEzquerra authored and Vindaar committed Jun 12, 2024
1 parent 05ce26c commit e6e7b45
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,22 @@ jobs:
path: nim
version: ${{ matrix.branch }}

- name: Setup MSYS2 (Windows)
if: ${{matrix.target == 'windows'}}
uses: msys2/setup-msys2@v2
with:
path-type: inherit
update: true
install: base-devel git mingw-w64-x86_64-toolchain

- name: Install dependencies (Windows)
if: ${{matrix.target == 'windows'}}
shell: msys2 {0}
run: |
pacman -Syu --noconfirm
pacman -S --needed --noconfirm mingw-w64-x86_64-cairo
pacman -S --needed --noconfirm mingw-w64-x86_64-lapack
- name: Setup nimble & deps
shell: bash
run: |
Expand Down

0 comments on commit e6e7b45

Please sign in to comment.