Add dvc pull step (#3056)

* Add dvc pull step

* Remove CD

* Add details about LOGNAME and fail if dvc isn't installed
This commit is contained in:
BrianHarrisonAMD
2025-10-19 17:09:21 -06:00
committed by GitHub
parent d88ea05c84
commit af3786fe08

View File

@@ -35,6 +35,15 @@ jobs:
with:
repository: "ROCm/rocm-libraries"
- name: Pull DVC files for rocm-libraries # LOGNAME details here https://github.com/ROCm/rocm-libraries/pull/1617
run: |
if command -v dvc &> /dev/null; then
echo "dvc detected"
else
echo "Warning, dvc not detected!"
fi
LOGNAME=github-runner dvc pull -v
- name: Checkout composable_kernel repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with: