Skip to content

Commit

Permalink
Fix CI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
benlandrum authored and dalcinl committed Apr 23, 2024
1 parent c6c3a64 commit 95bcdcb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12-dev"
- "3.12"

steps:

Expand All @@ -41,10 +41,16 @@ jobs:
# Install fftw
case $(uname) in
Linux)
sudo apt update && sudo apt install -y -q fftw-dev
sudo apt update
sudo apt install -y -q fftw-dev
echo FFTW_INCLUDE_DIR=/usr/include >> $GITHUB_ENV
echo FFTW_LIBRARY_DIR=/usr/lib/x86_64-linux-gnu >> $GITHUB_ENV
;;
Darwin)
brew install fftw
local prefix=$(brew --prefix fftw)
echo FFTW_INCLUDE_DIR=$prefix/include >> $GITHUB_ENV
echo FFTW_LIBRARY_DIR=$prefix/lib >> $GITHUB_ENV
;;
esac
Expand Down

0 comments on commit 95bcdcb

Please sign in to comment.