This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/update_github_actions
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/feature/update_github_actions
by this push:
new 46f55ba4 Fix conan build on Macos.
46f55ba4 is described below
commit 46f55ba4c9be2dbecd150c0a49d433be29d63137
Author: PengZheng <[email protected]>
AuthorDate: Thu Jan 19 15:47:04 2023 +0800
Fix conan build on Macos.
"czmq/4.2.0: Invalid ID: czmq/4.2.0 can not be built as shared and debug on
apple-clang."
---
.github/workflows/macos.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index ce3a1941..833f964a 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -21,7 +21,7 @@ jobs:
- name: Setup Conan Profile
run: |
conan profile new default --detect
- conan profile update settings.build_type=Debug default
+ conan profile update settings.build_type=RelWithDebInfo default
- name: Install Dependencies
env:
CONAN_BUILD_OPTIONS: |