From 5d44bca37dd7121c2eaf86695c19259e4a222e1e Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Thu, 12 Mar 2026 20:28:34 +0000 Subject: [PATCH] Fix Conan config: use global.conf append instead of config set Conan 2.x removed 'conan config set'. Append the setting to global.conf directly. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/telemetry-validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/telemetry-validation.yml b/.github/workflows/telemetry-validation.yml index 3b3ed58aba..62c0392d40 100644 --- a/.github/workflows/telemetry-validation.yml +++ b/.github/workflows/telemetry-validation.yml @@ -114,7 +114,7 @@ jobs: run: conan remote login xrplf "$CONAN_USER" --password "$CONAN_PASS" - name: Enable optimized binary compatibility - run: conan config set core.graph:compatibility_mode=optimized + run: echo "core.graph:compatibility_mode=optimized" >> "$(conan config home)/global.conf" - name: Build dependencies uses: ./.github/actions/build-deps