File tree Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 12
12
13
13
strategy :
14
14
matrix :
15
- python : [3.8]
15
+ python : [3.8, 3.9 ]
16
16
steps :
17
17
- uses : actions/checkout@v2
18
18
with :
57
57
58
58
strategy :
59
59
matrix :
60
- python : [3.8]
60
+ python : [3.8, 3.9 ]
61
61
env :
62
62
conda-bld : C:\Miniconda\conda-bld\win-64\
63
63
steps :
96
96
97
97
strategy :
98
98
matrix :
99
- python : [3.8]
99
+ python : [3.8, 3.9 ]
100
100
experimental : [false]
101
101
runner : [ubuntu-latest]
102
102
# include:
@@ -160,7 +160,7 @@ jobs:
160
160
161
161
strategy :
162
162
matrix :
163
- python : [3.8]
163
+ python : [3.8, 3.9 ]
164
164
experimental : [false]
165
165
runner : [windows-latest]
166
166
continue-on-error : ${{ matrix.experimental }}
@@ -216,7 +216,7 @@ jobs:
216
216
runs-on : ubuntu-latest
217
217
strategy :
218
218
matrix :
219
- python : [3.8]
219
+ python : [3.8, 3.9 ]
220
220
steps :
221
221
- name : Download artifact
222
222
uses : actions/download-artifact@v2
@@ -241,7 +241,7 @@ jobs:
241
241
runs-on : windows-latest
242
242
strategy :
243
243
matrix :
244
- python : [3.8]
244
+ python : [3.8, 3.9 ]
245
245
steps :
246
246
- name : Download artifact
247
247
uses : actions/download-artifact@v2
Original file line number Diff line number Diff line change 3
3
# Workaround to Klocwork overwriting LD_LIBRARY_PATH that was modified
4
4
# by DPC++ compiler conda packages. Will need to be added to DPC++ compiler
5
5
# activation scripts.
6
- export LDFLAGS=" $LDFLAGS -Wl,-rpath,$CONDA_PREFIX /lib"
6
+ export LDFLAGS=" $LDFLAGS -Wl,-rpath,$PREFIX /lib"
7
7
8
8
${PYTHON} setup.py clean --all
9
- INSTALL_CMD=" install --sycl-compiler-prefix=$CONDA_PREFIX "
9
+ INSTALL_CMD=" install --sycl-compiler-prefix=$BUILD_PREFIX "
10
+
11
+ # Workaround for:
12
+ # DPC++ launched by cmake does not see components of `dpcpp_cpp_rt`,
13
+ # because conda build isolates LD_LIBRARY_PATH to only $PREFIX subfolders.
14
+ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH} :$BUILD_PREFIX /lib
10
15
11
16
if [ -n " ${WHEELS_OUTPUT_FOLDER} " ]; then
12
17
# Install packages and assemble wheel package from built bits
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ requirements:
22
22
- python
23
23
- make # [unix]
24
24
- ninja # [win]
25
- - numpy >=1.17 # [win or osx or py= =38]
25
+ - numpy >=1.17 # [win or osx or py> =38]
26
26
- numpy 1.17 # [linux and py==37]
27
27
- wheel
28
28
run :
You can’t perform that action at this time.
0 commit comments