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 <noreply@anthropic.com>
This commit is contained in:
Pratik Mankawde
2026-03-12 20:28:34 +00:00
parent fea113000d
commit 5d44bca37d

View File

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