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 <noreply@anthropic.com>
This commit is contained in:
Pratik Mankawde
2026-03-12 20:16:38 +00:00
parent 345a8f80a5
commit 7d10ccb58a

View File

@@ -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