Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@ jobs:
test-conda-nightly-env:
needs: checks
secrets: inherit
# We use a build workflow so that we get CPU jobs and high matrix coverage
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.06
# TODO: We want to use a build workflow so that we get CPU jobs and high
# matrix coverage without having to hardcode the CUDA/Python matrix here
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.06
with:
build_type: pull-request
script: "ci/test_conda_nightly_env.sh"
run_script: "ci/test_conda_nightly_env.sh"
node_type: "cpu8"
container_image: "rapidsai/ci-conda:latest"
2 changes: 1 addition & 1 deletion ci/check_conda_nightly_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_package_date(package):
return None

# Matches 6 digits starting with "2", which should be YYMMDD
date_re = r"_(2\d{5})_"
date_re = r"(?:^|_)(2\d{5})_"

# Use regex to find the date string in the input
match = re.search(date_re, package["build_string"])
Expand Down
2 changes: 0 additions & 2 deletions conda/recipes/rapids/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ requirements:
- nx-cugraph ={{ major_minor_version }}.*
- cuml ={{ major_minor_version }}.*
- cucim ={{ major_minor_version }}.*
- cuspatial ={{ major_minor_version }}.*
- cuproj ={{ major_minor_version }}.*
- custreamz ={{ major_minor_version }}.*
- cuxfilter ={{ major_minor_version }}.*
- dask-cuda ={{ major_minor_version }}.*
Expand Down