-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cxx-compiler on Linux and m2w64-gcc on Windows
- Loading branch information
Showing
3 changed files
with
732 additions
and
429 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,23 +11,22 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: ["windows-2022", "macos-latest"] | ||
python-version: ["3.10", "3.11", "3.12", "3.13"] | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.33.0 | ||
pixi-version: v0.35.0 | ||
cache: false | ||
- name: Install | ||
run: | | ||
pixi run install-editable | ||
pixi run pip install plugins/fluidfft-fftw -v --no-build-isolation --no-deps | ||
pixi run python -c "import fluidfft_fftw.fft2d as m; print(m)" | ||
ls .pixi/envs/default/Lib/site-packages/fluidfft_fftw/fft2d | ||
pixi run python -c "import fluidfft_fftw.fft2d.with_fftw1d" | ||
pixi run python -c "import fluidfft_fftw.fft2d.with_fftw2d" | ||
pixi run python -c "import fluidfft_fftw.fft3d.with_fftw3d" | ||
- name: Tests | ||
run: | | ||
pixi run pytest -v -s tests | ||
|
Oops, something went wrong.