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 \
90
90
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-python-${{ matrix.python }}-
91
91
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-
92
92
- name : Build conda package
93
- run : conda build --no-test --python ${{ matrix.python }} -c intel -c main --override-channels conda-recipe
93
+ run : conda build --no-test --python ${{ matrix.python }} -c intel -c conda-forge --override-channels conda-recipe
94
94
- name : Upload artifact
95
95
uses : actions/upload-artifact@v3
96
96
with :
@@ -108,7 +108,7 @@ jobs:
108
108
runner : [ubuntu-20.04]
109
109
continue-on-error : ${{ matrix.experimental }}
110
110
env :
111
- CHANNELS : -c intel -c main --override-channels
111
+ CHANNELS : -c intel -c conda-forge --override-channels
112
112
113
113
steps :
114
114
- name : Download artifact
@@ -192,7 +192,7 @@ jobs:
192
192
continue-on-error : ${{ matrix.experimental }}
193
193
env :
194
194
workdir : ' ${{ github.workspace }}'
195
- CHANNELS : -c intel -c main --override-channels
195
+ CHANNELS : -c intel -c conda-forge --override-channels
196
196
197
197
steps :
198
198
- name : Download artifact
@@ -355,7 +355,7 @@ jobs:
355
355
runner : [ubuntu-20.04]
356
356
continue-on-error : ${{ matrix.experimental }}
357
357
env :
358
- CHANNELS : -c intel -c main --override-channels
358
+ CHANNELS : -c intel -c conda-forge --override-channels
359
359
360
360
steps :
361
361
- name : Install conda-build
@@ -413,7 +413,7 @@ jobs:
413
413
shell : bash -l {0}
414
414
run : |
415
415
source $CONDA/etc/profile.d/conda.sh
416
- CHANNELS="-c $GITHUB_WORKSPACE/channel -c dppy/label/dev -c intel -c main --override-channels"
416
+ CHANNELS="-c $GITHUB_WORKSPACE/channel -c dppy/label/dev -c intel -c conda-forge --override-channels"
417
417
export PACKAGE_VERSION=$(python -c "${VER_SCRIPT1} ${VER_SCRIPT2}")
418
418
conda install -n examples -y ${CHANNELS} dpctl=${PACKAGE_VERSION} dpnp">=0.10.1" || exit 1
419
419
- name : Build and run examples of pybind11 extensions
@@ -498,7 +498,7 @@ jobs:
498
498
runner : [ubuntu-20.04]
499
499
continue-on-error : ${{ matrix.experimental }}
500
500
env :
501
- CHANNELS : -c intel -c main --override-channels
501
+ CHANNELS : -c intel -c conda-forge --override-channels
502
502
steps :
503
503
- name : Cache array API tests
504
504
id : cache-array-api-tests
0 commit comments