Skip to content

Commit

Permalink
ci: install fftw from source
Browse files Browse the repository at this point in the history
  • Loading branch information
janden committed Jun 24, 2024
1 parent 9a7176c commit acb0ac2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python_skbuild_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ jobs:
- uses: actions/checkout@v4

- name: Install FFTW
run: C:\msys64\usr\bin\bash.exe -lc "pacman -Sy --noconfirm mingw-w64-x86_64-fftw"
run: |
Invoke-WebRequest -Uri "ftp://www.fftw.org/pub/fftw/fftw-3.3.10.zip" -OutFile "${{ github.workspace }}\fftw.zip"
Expand-Archive -Path "${{ github.workspace }}\fftw.zip" -DestinationPath "${{ github.workspace }}\fftw"
cmake -B "${{ github.workspace }}\fftw-build" "${{ github.workspace }}\fftw"
cmake --build "${{ github.workspace }}\fftw-build"
cmake --install "${{ github.workspace }}\fftw-build"
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
Expand Down

0 comments on commit acb0ac2

Please sign in to comment.