Skip to content

Add cxx-compiler on Linux and m2w64-gcc on Windows #122

Add cxx-compiler on Linux and m2w64-gcc on Windows

Add cxx-compiler on Linux and m2w64-gcc on Windows #122

Workflow file for this run

name: CI Pixi
on:
- push
- pull_request
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["windows-2022", "macos-latest"]
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- uses: prefix-dev/setup-pixi@v0.8.1
with:
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"
- name: Tests
run: |
pixi run pytest -v -s tests
pixi run pytest -v -s plugins/fluidfft-fftw