44
44
run : conda install conda-build
45
45
- name : Build conda package
46
46
run : |
47
- CHANNELS="-c defaults -c intel --override-channels"
47
+ CHANNELS="-c intel -c main --override-channels"
48
48
VERSIONS="--python ${{ matrix.python }}"
49
49
TEST="--no-test"
50
50
conda build \
89
89
- name : Install conda-build
90
90
run : conda install conda-build
91
91
- name : Build conda package
92
- run : conda build --no-test --python ${{ matrix.python }} -c defaults -c intel --override-channels conda-recipe
92
+ run : conda build --no-test --python ${{ matrix.python }} -c intel -c main --override-channels conda-recipe
93
93
- name : Upload artifact
94
94
uses : actions/upload-artifact@v2
95
95
with :
@@ -107,7 +107,7 @@ jobs:
107
107
runner : [ubuntu-latest]
108
108
continue-on-error : ${{ matrix.experimental }}
109
109
env :
110
- CHANNELS : -c defaults -c intel --override-channels
110
+ CHANNELS : -c intel -c main --override-channels
111
111
112
112
steps :
113
113
- name : Download artifact
@@ -154,7 +154,7 @@ jobs:
154
154
export PACKAGE_VERSION=$(python -c "${VER_SCRIPT1} ${VER_SCRIPT2}")
155
155
conda create -n test_dpctl $PACKAGE_NAME=${PACKAGE_VERSION} pytest python=${{ matrix.python }} $CHANNELS
156
156
# Test installed packages
157
- conda list
157
+ conda list -n test_dpctl
158
158
- name : Smoke test
159
159
run : |
160
160
. $CONDA/etc/profile.d/conda.sh
@@ -183,7 +183,7 @@ jobs:
183
183
runner : [windows-latest]
184
184
continue-on-error : ${{ matrix.experimental }}
185
185
env :
186
- CHANNELS : -c defaults -c intel --override-channels
186
+ CHANNELS : -c intel -c main --override-channels
187
187
188
188
steps :
189
189
- name : Download artifact
@@ -347,7 +347,7 @@ jobs:
347
347
runner : [ubuntu-latest]
348
348
continue-on-error : ${{ matrix.experimental }}
349
349
env :
350
- CHANNELS : -c defaults -c intel --override-channels
350
+ CHANNELS : -c intel -c main --override-channels
351
351
352
352
steps :
353
353
- name : Install conda-build
@@ -405,7 +405,7 @@ jobs:
405
405
shell : bash -l {0}
406
406
run : |
407
407
source $CONDA/etc/profile.d/conda.sh
408
- CHANNELS="-c $GITHUB_WORKSPACE/channel -c dppy/label/dev -c intel -c defaults --override-channels"
408
+ CHANNELS="-c $GITHUB_WORKSPACE/channel -c dppy/label/dev -c intel -c main --override-channels"
409
409
export PACKAGE_VERSION=$(python -c "${VER_SCRIPT1} ${VER_SCRIPT2}")
410
410
conda install -n examples -y ${CHANNELS} dpctl=${PACKAGE_VERSION} dpnp">=0.10.1" || exit 1
411
411
- name : Build and run examples with native extensions
@@ -489,7 +489,7 @@ jobs:
489
489
runner : [ubuntu-latest]
490
490
continue-on-error : ${{ matrix.experimental }}
491
491
env :
492
- CHANNELS : -c intel -c defaults --override-channels
492
+ CHANNELS : -c intel -c main --override-channels
493
493
steps :
494
494
- name : Cache array API tests
495
495
id : cache-array-api-tests
0 commit comments