File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 97
97
98
98
- name : Install dpnp dependencies
99
99
run : |
100
- conda install numpy"<1.24" dpctl">=0.15.1dev2" mkl-devel-dpcpp onedpl-devel tbb-devel dpcpp_linux-64 \
100
+ conda install numpy"<1.24" dpctl">=0.15.1dev2" mkl-devel-dpcpp onedpl-devel tbb-devel dpcpp_linux-64"<2024.0.1" \
101
101
cmake cython pytest ninja scikit-build sysroot_linux-64">=2.28" ${{ env.CHANNELS }}
102
102
103
103
- name : Install cuPy dependencies
Original file line number Diff line number Diff line change 53
53
conda list
54
54
55
55
- name : Build dpnp with coverage
56
+ id : build_coverage
57
+ uses :
nick-fields/[email protected]
58
+ with :
59
+ shell : bash
60
+ timeout_minutes : 60
61
+ max_attempts : 5
62
+ retry_on : error
63
+ command : |
64
+ . $CONDA/etc/profile.d/conda.sh
65
+ conda activate coverage
66
+ git clean -fxd
67
+ python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py"
68
+
69
+ - name : Total number of coverage attempts
56
70
run : |
57
- python scripts/gen_coverage.py --pytest-opts="--ignore tests/test_random.py "
71
+ echo "Total number of coverage attempts made: ${{ steps.build_coverage.outputs.total_attempts }} "
58
72
59
73
- name : Install coverall dependencies
60
74
run : |
Original file line number Diff line number Diff line change 1
1
{% set required_compiler_and_mkl_version = "2024.0" %}
2
+ {% set max_compiler_version = "2024.0.1" %}
2
3
{% set required_dpctl_version = "0.15.1dev2" %}
3
4
4
5
package :
@@ -24,7 +25,7 @@ requirements:
24
25
- scikit-build
25
26
build :
26
27
- {{ compiler('cxx') }}
27
- - {{ compiler('dpcpp') }} >={{ required_compiler_and_mkl_version }} # [not osx]
28
+ - {{ compiler('dpcpp') }} >={{ required_compiler_and_mkl_version }},<{{ max_compiler_version }} # [not osx]
28
29
- sysroot_linux-64 >=2.28 # [linux]
29
30
run :
30
31
- python
You can’t perform that action at this time.
0 commit comments