Skip to content

Commit 5217abe

Browse files
Use conda-forge channel instead of main channel as source of dependencies
1 parent 18d1728 commit 5217abe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/conda-package.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: conda install conda-build
4545
- name: Build conda package
4646
run: |
47-
CHANNELS="-c dppy/label/tools -c intel -c main --override-channels"
47+
CHANNELS="-c intel -c conda-forge --override-channels"
4848
VERSIONS="--python ${{ matrix.python }}"
4949
TEST="--no-test"
5050
conda build \
@@ -90,7 +90,7 @@ jobs:
9090
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-python-${{ matrix.python }}-
9191
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-
9292
- 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
9494
- name: Upload artifact
9595
uses: actions/upload-artifact@v3
9696
with:
@@ -108,7 +108,7 @@ jobs:
108108
runner: [ubuntu-20.04]
109109
continue-on-error: ${{ matrix.experimental }}
110110
env:
111-
CHANNELS: -c intel -c main --override-channels
111+
CHANNELS: -c intel -c conda-forge --override-channels
112112

113113
steps:
114114
- name: Download artifact
@@ -190,7 +190,7 @@ jobs:
190190
continue-on-error: ${{ matrix.experimental }}
191191
env:
192192
workdir: '${{ github.workspace }}'
193-
CHANNELS: -c intel -c main --override-channels
193+
CHANNELS: -c intel -c conda-forge --override-channels
194194

195195
steps:
196196
- name: Download artifact
@@ -352,7 +352,7 @@ jobs:
352352
runner: [ubuntu-20.04]
353353
continue-on-error: ${{ matrix.experimental }}
354354
env:
355-
CHANNELS: -c intel -c main --override-channels
355+
CHANNELS: -c intel -c conda-forge --override-channels
356356

357357
steps:
358358
- name: Install conda-build
@@ -410,7 +410,7 @@ jobs:
410410
shell: bash -l {0}
411411
run: |
412412
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"
414414
export PACKAGE_VERSION=$(python -c "${VER_SCRIPT1} ${VER_SCRIPT2}")
415415
conda install -n examples -y ${CHANNELS} dpctl=${PACKAGE_VERSION} dpnp">=0.10.1" || exit 1
416416
- name: Build and run examples of pybind11 extensions
@@ -495,7 +495,7 @@ jobs:
495495
runner: [ubuntu-20.04]
496496
continue-on-error: ${{ matrix.experimental }}
497497
env:
498-
CHANNELS: -c intel -c main --override-channels
498+
CHANNELS: -c intel -c conda-forge --override-channels
499499
steps:
500500
- name: Cache array API tests
501501
id: cache-array-api-tests

0 commit comments

Comments
 (0)