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 f45a497d Conan build time optimization.
f45a497d is described below
commit f45a497d11603a30bdc68554eb380a2b594934c3
Author: PengZheng <[email protected]>
AuthorDate: Thu Jan 19 16:10:43 2023 +0800
Conan build time optimization.
Build release version to avoid building everything.
---
.github/workflows/macos.yml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 833f964a..39c4b45d 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=RelWithDebInfo default
+ conan profile update settings.build_type=Release default
- name: Install Dependencies
env:
CONAN_BUILD_OPTIONS: |
@@ -41,6 +41,9 @@ jobs:
source activate_run.sh
ctest --verbose
source deactivate_run.sh
+ - name: Test Installed Celix
+ run: |
+ conan create -pr:b default -pr:h default -tf
examples/conan_test_package -tbf test-build -o celix:celix_cxx17=True -o
celix:celix_install_deprecated_api=True --require-override=libcurl/7.64.1
--require-override=openssl/1.1.1s .
build-brew:
runs-on: macOS-latest