Skip to content

Commit

Permalink
Merge pull request #171 from rapidsai/bug/remove_symbol_exclusions_de…
Browse files Browse the repository at this point in the history
…fault

Remove default exclusions from symbol_exclusions
  • Loading branch information
bdice authored Jan 18, 2024
2 parents 91799a9 + 2619814 commit 8e2d7dd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/conda-cpp-post-build-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ on:
required: false
symbol_exclusions:
type: string
default: "void (cub::|thrust::)"

defaults:
run:
Expand Down Expand Up @@ -86,4 +85,11 @@ jobs:
path: "./tool/"
fetch-depth: 0
- name: Verify CUDA libraries have no public kernel entry points
run: python ./tool/detect.py ${RAPIDS_EXTRACTED_DIR}/lib -e "${{ inputs.symbol_exclusions }}"
env:
SYMBOL_EXCLUSIONS: ${{ inputs.symbol_exclusions }}
run: |
if [ -n "${SYMBOL_EXCLUSIONS}" ]; then
python ./tool/detect.py ${RAPIDS_EXTRACTED_DIR}/lib -e "${SYMBOL_EXCLUSIONS}"
else
python ./tool/detect.py ${RAPIDS_EXTRACTED_DIR}/lib
fi

0 comments on commit 8e2d7dd

Please sign in to comment.