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 \
7272 fetch-depth : 0
7373 - uses : conda-incubator/setup-miniconda@v2
7474 with :
75- use-only-tar-bz2 : true
7675 auto-activate-base : true
7776 conda-build-version : " *"
7877 activate-environment : true
9089 ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-python-${{ matrix.python }}-
9190 ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-
9291 - 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
9493 - name : Upload artifact
9594 uses : actions/upload-artifact@v3
9695 with :
@@ -108,7 +107,7 @@ jobs:
108107 runner : [ubuntu-20.04]
109108 continue-on-error : ${{ matrix.experimental }}
110109 env :
111- CHANNELS : -c intel -c main --override-channels
110+ CHANNELS : -c intel -c conda-forge --override-channels
112111
113112 steps :
114113 - name : Download artifact
@@ -192,7 +191,7 @@ jobs:
192191 continue-on-error : ${{ matrix.experimental }}
193192 env :
194193 workdir : ' ${{ github.workspace }}'
195- CHANNELS : -c intel -c main --override-channels
194+ CHANNELS : -c intel -c conda-forge --override-channels
196195
197196 steps :
198197 - name : Download artifact
@@ -201,7 +200,6 @@ jobs:
201200 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
202201 - uses : conda-incubator/setup-miniconda@v2
203202 with :
204- use-only-tar-bz2 : true
205203 auto-update-conda : true
206204 conda-build-version : ' *'
207205 miniconda-version : ' latest'
@@ -355,7 +353,7 @@ jobs:
355353 runner : [ubuntu-20.04]
356354 continue-on-error : ${{ matrix.experimental }}
357355 env :
358- CHANNELS : -c intel -c main --override-channels
356+ CHANNELS : -c intel -c conda-forge --override-channels
359357
360358 steps :
361359 - name : Install conda-build
@@ -408,12 +406,12 @@ jobs:
408406 conda install -n examples -y ninja $CHANNELS || exit 1
409407 conda install -n examples -y pybind11 cython scikit-build $CHANNELS || exit 1
410408 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"
412410 - name : Install dpctl
413411 shell : bash -l {0}
414412 run : |
415413 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"
417415 export PACKAGE_VERSION=$(python -c "${VER_SCRIPT1} ${VER_SCRIPT2}")
418416 conda install -n examples -y ${CHANNELS} dpctl=${PACKAGE_VERSION} dpnp">=0.10.1" || exit 1
419417 - name : Build and run examples of pybind11 extensions
@@ -498,7 +496,7 @@ jobs:
498496 runner : [ubuntu-20.04]
499497 continue-on-error : ${{ matrix.experimental }}
500498 env :
501- CHANNELS : -c intel -c main --override-channels
499+ CHANNELS : -c intel -c conda-forge --override-channels
502500 steps :
503501 - name : Cache array API tests
504502 id : cache-array-api-tests
0 commit comments