From 0fb13588bb4f1587faf1d7ac4fb034a89d8c0214 Mon Sep 17 00:00:00 2001 From: BrianHarrisonAMD <169072757+BrianHarrisonAMD@users.noreply.github.com> Date: Sun, 19 Oct 2025 17:09:21 -0600 Subject: [PATCH] Add dvc pull step (#3056) * Add dvc pull step * Remove CD * Add details about LOGNAME and fail if dvc isn't installed [ROCm/composable_kernel commit: af3786fe0814a75646ff3194f86eab0e24b047e6] --- .github/workflows/therock-ci-linux.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/therock-ci-linux.yml b/.github/workflows/therock-ci-linux.yml index beaabbe763..f4d0c0063c 100644 --- a/.github/workflows/therock-ci-linux.yml +++ b/.github/workflows/therock-ci-linux.yml @@ -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: