Skip to content

Commit

Permalink
Also filter the JNI build directory for cudf (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr authored Aug 28, 2024
1 parent 6fac4bf commit df6440f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion features/src/rapids-build-utils/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "NVIDIA RAPIDS devcontainer build utilities",
"id": "rapids-build-utils",
"version": "24.10.6",
"version": "24.10.7",
"description": "A feature to install the RAPIDS devcontainer build utilities",
"containerEnv": {
"BASH_ENV": "/etc/bash.bash_env"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,16 @@ python_conda_pkg_names() {

if test -d ~/"${!repo_path:-}/.git"; then
# the regex will continue until morale improves
find ~/"${!repo_path}/" \
-type f -name 'meta.yaml' \
! -path '*/.conda/*' \
! -path '*/build/*' \
! -path '*/_skbuild/*' \
-exec grep -E 'name: ?' {} \; \
2>/dev/null \
| tr -d '[:blank:]' \
| cut -d':' -f2 \
find ~/"${!repo_path}/" \
-type f -name 'meta.yaml' \
! -path '*/.conda/*' \
! -path '*/build/*' \
! -path '*/_skbuild/*' \
! -path '*/target/cmake-build/*' \
-exec grep -E 'name: ?' {} \; \
2>/dev/null \
| tr -d '[:blank:]' \
| cut -d':' -f2 \
;
fi
done
Expand Down

0 comments on commit df6440f

Please sign in to comment.