Skip to content

First plugin fluidfft-mpi4pyfft (untested) + fft3d/testing.py #97

First plugin fluidfft-mpi4pyfft (untested) + fft3d/testing.py

First plugin fluidfft-mpi4pyfft (untested) + fft3d/testing.py #97

Workflow file for this run

name: CI-linux
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11"]
steps:
- name: apt install
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages:
make libfftw3-dev libfftw3-mpi-dev libhdf5-openmpi-dev openmpi-bin libopenmpi-dev libopenblas-dev
version: 1.0
execute_install_scripts: true
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install nox pdm
# cython is for coverage
python -m pip install coverage cython
- name: Run tests
run: |
cp .github/fluidfft-site-seq.cfg $HOME/.fluidfft-site.cfg
nox --session "tests(with_cov=True, with_mpi=False)"
make cleanall
cp .github/fluidfft-site-mpi.cfg $HOME/.fluidfft-site.cfg
nox --session "tests(with_cov=True, with_mpi=True)"
coverage xml
- name: Upload coverage to codecov
if: ${{ success() }}
uses: codecov/codecov-action@v3