Skip to content

Commit

Permalink
Update .github/workflows/conda-cpp-post-build-checks.yaml
Browse files Browse the repository at this point in the history
Co-authored-by: Bradley Dice <[email protected]>
  • Loading branch information
robertmaynard and bdice authored Jan 18, 2024
1 parent 290c4ce commit 2619814
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/conda-cpp-post-build-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,11 @@ jobs:
path: "./tool/"
fetch-depth: 0
- name: Verify CUDA libraries have no public kernel entry points
env:
SYMBOL_EXCLUSIONS: ${{ inputs.symbol_exclusions }}
run: |
if ${{ inputs.symbol_exclusions }}; then
python ./tool/detect.py ${RAPIDS_EXTRACTED_DIR}/lib -e "${{ inputs.symbol_exclusions }}"
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 2619814

Please sign in to comment.