Add debugging statements #16
Workflow file for this run
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
name: Editable build using pip and pre-release NumPy | |
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'] | |
use_pre: ["", "--pre"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-activate-base: true | |
mamba-version: "*" | |
channels: conda-forge | |
activate-environment: true | |
python-version: ${{ matrix.python }} | |
- name: Install MKL | |
run: conda install -c conda-forge mkl-devel mkl-service --override-channels | |
- name: Build conda package | |
run: | | |
pip install --no-cache-dir cython pytest hypothesis | |
pip install --no-cache-dir numpy ${{ matrix.use_pre }} | |
echo "CONDA_PREFIX is ${CONDA_PREFIX}" | |
ls $CONDA_PREFIX | |
export MKLROOT=${CONDA_PREFIX} | |
pip install -e . --no-build-isolation --verbose --no-deps | |
python -m pytest -v mkl_fft/tests |