-
Notifications
You must be signed in to change notification settings - Fork 8
66 lines (58 loc) · 1.88 KB
/
Copy pathbuild_pip.yml
File metadata and controls
66 lines (58 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Build using pip and pre-release NumPy
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
strategy:
matrix:
python: ['3.10', '3.11', '3.12', '3.13']
use_pre: ["", "--pre"]
include:
- python: "3.14"
python_spec: "3.14.* *_cp314"
use_pre: ""
- python: "3.14"
python_spec: "3.14.* *_cp314"
use_pre: "--pre"
- python: "3.14"
python_spec: "3.14.* *_cp314t"
use_pre: ""
- python: "3.14"
python_spec: "3.14.* *_cp314t"
use_pre: "--pre"
steps:
- name: Checkout repo
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4.0.1
with:
use-mamba: true
miniforge-version: latest
channels: https://software.repos.intel.com/python/conda, conda-forge
conda-remove-defaults: true
activate-environment: test
python-version: ${{ matrix.python }}
- name: Install Compiler and MKL
run: |
conda install mkl-devel dpcpp_linux-64 "python=${{ matrix.python_spec || matrix.python }}"
python -c "import sys; print(sys.executable)"
which python
- name: Build with pip
run: |
pip install --no-cache-dir meson-python ninja cmake "cython>=3.1.0"
pip install --no-cache-dir numpy ${{ matrix.use_pre }}
CC=icx pip install -e . --no-build-isolation --no-deps --verbose
pip install --no-cache-dir pytest
pip list
python -m pytest -sv --pyargs mkl_umath