Skip to content

Build on Linux using pip #4

Build on Linux using pip

Build on Linux using pip #4

Workflow file for this run

name: Editable build using pip
on: push
permissions: read-all
env:
PACKAGE_NAME: mkl_fft
MODULE_NAME: mkl_fft
TEST_ENV_NAME: test_mkl_fft
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set pkgs_dirs
run: |
echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install MKL
run: conda install -c intel mkl-devel intel-openmp --override-channels
- name: Build conda package
run: |
pip install --no-cache-dir cython pytest hypothesis
pip install --no-cache-dir numpy --pre
pip install -e . --no-build-isolation
pytest -m pytest/tests