From 51f7c5102d2a6ec303df2c3de8ab3160b4e2915f Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Mon, 20 Feb 2023 21:15:49 +0200 Subject: [PATCH] Verbose true. --- .cirrus.yml | 2 +- valentina.qbs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index f361d0c81..31d5081b4 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -182,7 +182,7 @@ macos_task_template: &MACOS_TASK_TEMPLATE - qbs setup-qt /opt/homebrew/opt/qt6/bin/qmake qt6 - qbs-config defaultProfile qt6 - qbs config profiles.qt6.baseProfile clang - - qbs build -f valentina.qbs -d $CIRRUS_WORKING_DIR/build --command-echo-mode command-line config:release modules.buildconfig.enableUnitTests:false modules.buildconfig.enableMultiBundle:${MULTI_BUNDLE} qbs.installRoot:$CIRRUS_WORKING_DIR/build/install-root profile:qt6 project.enableConan:true project.minimumMacosVersion:11.0 + - qbs build -f valentina.qbs -d $CIRRUS_WORKING_DIR/build --command-echo-mode command-line config:release modules.buildconfig.enableUnitTests:false modules.buildconfig.enableMultiBundle:${MULTI_BUNDLE} qbs.installRoot:$CIRRUS_WORKING_DIR/build/install-root profile:qt6 project.enableConan:true project.minimumMacosVersion:${MACOS_DEPLOYMENT_TARGET} - ccache -s deploy_script: - pwd diff --git a/valentina.qbs b/valentina.qbs index fe6fd6a1a..2e58d19e6 100644 --- a/valentina.qbs +++ b/valentina.qbs @@ -11,9 +11,10 @@ Project { id: thirdPartyConanPackages condition: enableConan conanfilePath: project.sourceDirectory + "/conanfile.py" + verbose: true settings: { if (qbs.targetOS.contains("macos") && project.minimumMacosVersion !== undefined) - return ({"os.version": project.minimumMacosVersion.toString()}); + return ({"os.version": project.minimumMacosVersion}); return undefined; } }