From 7d10ccb58a34b9f3af85148d3de413359dddefe3 Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Thu, 12 Mar 2026 20:16:38 +0000 Subject: [PATCH] Add back conan install step Conan was previously installed by prepare-runner or a separate step. Since we're not using prepare-runner on native runners, install it via pip alongside other Python dependencies. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/telemetry-validation.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/telemetry-validation.yml b/.github/workflows/telemetry-validation.yml index e357ec3a10..00871970ba 100644 --- a/.github/workflows/telemetry-validation.yml +++ b/.github/workflows/telemetry-validation.yml @@ -86,8 +86,10 @@ jobs: sudo apt-get update sudo apt-get install -y curl jq bc ninja-build ccache - - name: Install Python dependencies - run: pip3 install -r docker/telemetry/workload/requirements.txt + - name: Install Conan and Python dependencies + run: | + pip3 install conan + pip3 install -r docker/telemetry/workload/requirements.txt - name: Print build environment uses: ./.github/actions/print-env