44
44
run : conda install conda-build
45
45
- name : Build conda package
46
46
run : |
47
- CHANNELS="-c dppy/label/tools -c intel -c main --override-channels"
47
+ CHANNELS="-c intel -c conda-forge --override-channels"
48
48
VERSIONS="--python ${{ matrix.python }}"
49
49
TEST="--no-test"
50
50
conda build \
72
72
fetch-depth : 0
73
73
- uses : conda-incubator/setup-miniconda@v2
74
74
with :
75
- use-only-tar-bz2 : true
76
75
auto-activate-base : true
77
76
conda-build-version : " *"
78
77
activate-environment : true
90
89
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-python-${{ matrix.python }}-
91
90
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-
92
91
- name : Build conda package
93
- run : conda build --no-test --python ${{ matrix.python }} -c intel -c main --override-channels conda-recipe
92
+ run : conda build --no-test --python ${{ matrix.python }} -c intel -c conda-forge --override-channels conda-recipe
94
93
- name : Upload artifact
95
94
uses : actions/upload-artifact@v3
96
95
with :
@@ -108,7 +107,7 @@ jobs:
108
107
runner : [ubuntu-20.04]
109
108
continue-on-error : ${{ matrix.experimental }}
110
109
env :
111
- CHANNELS : -c intel -c main --override-channels
110
+ CHANNELS : -c intel -c conda-forge --override-channels
112
111
113
112
steps :
114
113
- name : Download artifact
@@ -192,7 +191,7 @@ jobs:
192
191
continue-on-error : ${{ matrix.experimental }}
193
192
env :
194
193
workdir : ' ${{ github.workspace }}'
195
- CHANNELS : -c intel -c main --override-channels
194
+ CHANNELS : -c intel -c conda-forge --override-channels
196
195
197
196
steps :
198
197
- name : Download artifact
@@ -201,7 +200,6 @@ jobs:
201
200
name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
202
201
- uses : conda-incubator/setup-miniconda@v2
203
202
with :
204
- use-only-tar-bz2 : true
205
203
auto-update-conda : true
206
204
conda-build-version : ' *'
207
205
miniconda-version : ' latest'
@@ -355,7 +353,7 @@ jobs:
355
353
runner : [ubuntu-20.04]
356
354
continue-on-error : ${{ matrix.experimental }}
357
355
env :
358
- CHANNELS : -c intel -c main --override-channels
356
+ CHANNELS : -c intel -c conda-forge --override-channels
359
357
360
358
steps :
361
359
- name : Install conda-build
@@ -408,12 +406,12 @@ jobs:
408
406
conda install -n examples -y ninja $CHANNELS || exit 1
409
407
conda install -n examples -y pybind11 cython scikit-build $CHANNELS || exit 1
410
408
conda install -n examples -y mkl-dpcpp mkl-devel-dpcpp dpcpp_cpp_rt $CHANNELS || exit 1
411
- conda create -y -n build_env -c intel gcc_linux-64 gxx_linux-64 dpcpp_linux-64
409
+ conda create -y -n build_env $CHANNELS gcc_linux-64 gxx_linux-64 dpcpp_linux-64 sysroot_linux-64">=2.28"
412
410
- name : Install dpctl
413
411
shell : bash -l {0}
414
412
run : |
415
413
source $CONDA/etc/profile.d/conda.sh
416
- CHANNELS="-c $GITHUB_WORKSPACE/channel -c dppy/label/dev -c intel -c main --override-channels"
414
+ CHANNELS="-c $GITHUB_WORKSPACE/channel -c dppy/label/dev -c intel -c conda-forge --override-channels"
417
415
export PACKAGE_VERSION=$(python -c "${VER_SCRIPT1} ${VER_SCRIPT2}")
418
416
conda install -n examples -y ${CHANNELS} dpctl=${PACKAGE_VERSION} dpnp">=0.10.1" || exit 1
419
417
- name : Build and run examples of pybind11 extensions
@@ -498,7 +496,7 @@ jobs:
498
496
runner : [ubuntu-20.04]
499
497
continue-on-error : ${{ matrix.experimental }}
500
498
env :
501
- CHANNELS : -c intel -c main --override-channels
499
+ CHANNELS : -c intel -c conda-forge --override-channels
502
500
steps :
503
501
- name : Cache array API tests
504
502
id : cache-array-api-tests
0 commit comments