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
@@ -190,7 +190,7 @@ jobs:
190
190
continue-on-error : ${{ matrix.experimental }}
191
191
env :
192
192
workdir : ' ${{ github.workspace }}'
193
- CHANNELS : -c intel -c main --override-channels
193
+ CHANNELS : -c intel -c conda-forge --override-channels
194
194
195
195
steps :
196
196
- name : Download artifact
@@ -352,7 +352,7 @@ jobs:
352
352
runner : [ubuntu-20.04]
353
353
continue-on-error : ${{ matrix.experimental }}
354
354
env :
355
- CHANNELS : -c intel -c main --override-channels
355
+ CHANNELS : -c intel -c conda-forge --override-channels
356
356
357
357
steps :
358
358
- name : Install conda-build
@@ -410,7 +410,7 @@ jobs:
410
410
shell : bash -l {0}
411
411
run : |
412
412
source $CONDA/etc/profile.d/conda.sh
413
- CHANNELS="-c $GITHUB_WORKSPACE/channel -c dppy/label/dev -c intel -c main --override-channels"
413
+ CHANNELS="-c $GITHUB_WORKSPACE/channel -c dppy/label/dev -c intel -c conda-forge --override-channels"
414
414
export PACKAGE_VERSION=$(python -c "${VER_SCRIPT1} ${VER_SCRIPT2}")
415
415
conda install -n examples -y ${CHANNELS} dpctl=${PACKAGE_VERSION} dpnp">=0.10.1" || exit 1
416
416
- name : Build and run examples of pybind11 extensions
@@ -495,7 +495,7 @@ jobs:
495
495
runner : [ubuntu-20.04]
496
496
continue-on-error : ${{ matrix.experimental }}
497
497
env :
498
- CHANNELS : -c intel -c main --override-channels
498
+ CHANNELS : -c intel -c conda-forge --override-channels
499
499
steps :
500
500
- name : Cache array API tests
501
501
id : cache-array-api-tests
0 commit comments