-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c5c2a2
commit 48d716b
Showing
1 changed file
with
39 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
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 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 --pre | ||
pip install -e . --no-build-isolation | ||
python -m pytest -v pytest/tests |