-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove pins on geospatial libraries, specific RAPIDS nightlies
- Loading branch information
Showing
4 changed files
with
50 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,18 +13,18 @@ jobs: | |
pr-builder: | ||
needs: | ||
- build | ||
- test-conda-nightly-env | ||
# - test-conda-nightly-env | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
build: | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
build_type: pull-request | ||
test-conda-nightly-env: | ||
secrets: inherit | ||
# We use a build workflow so that we get CPU jobs and high matrix coverage | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
build_type: pull-request | ||
script: "ci/test_conda_nightly_env.sh" | ||
# test-conda-nightly-env: | ||
# secrets: inherit | ||
# # We use a build workflow so that we get CPU jobs and high matrix coverage | ||
# uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
# with: | ||
# build_type: pull-request | ||
# script: "ci/test_conda_nightly_env.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
|
||
LIBRMM_CHANNEL=$(rapids-get-pr-conda-artifact rmm 1678 cpp) | ||
RMM_CHANNEL=$(rapids-get-pr-conda-artifact rmm 1678 python) | ||
|
||
CUDF_CPP_CHANNEL=$(rapids-get-pr-conda-artifact cudf 16806 cpp) | ||
CUDF_PYTHON_CHANNEL=$(rapids-get-pr-conda-artifact cudf 16806 python) | ||
|
||
UCXX_CHANNEL=$(rapids-get-pr-conda-artifact ucxx 278 cpp) | ||
|
||
# LIBRAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2433 cpp) | ||
# RAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2433 python) | ||
|
||
LIBCUSPATIAL_CHANNEL=$(rapids-get-pr-conda-artifact cuspatial 1441 cpp) | ||
CUSPATIAL_CHANNEL=$(rapids-get-pr-conda-artifact cuspatial 1441 python) | ||
|
||
conda config --system --add channels "${LIBRMM_CHANNEL}" | ||
conda config --system --add channels "${RMM_CHANNEL}" | ||
conda config --system --add channels "${CUDF_CPP_CHANNEL}" | ||
conda config --system --add channels "${CUDF_PYTHON_CHANNEL}" | ||
conda config --system --add channels "${UCXX_CHANNEL}" | ||
# conda config --system --add channels "${LIBRAFT_CHANNEL}" | ||
# conda config --system --add channels "${RAFT_CHANNEL}" | ||
conda config --system --add channels "${LIBCUSPATIAL_CHANNEL}" | ||
conda config --system --add channels "${CUSPATIAL_CHANNEL}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters