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 bacd272e Fix `conan create` failure caused by compiler mismatch.
bacd272e is described below
commit bacd272ea2cddb2bef329d1f962304f0477dd897
Author: PengZheng <[email protected]>
AuthorDate: Thu Jan 19 14:27:44 2023 +0800
Fix `conan create` failure caused by compiler mismatch.
---
.github/workflows/ubuntu.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 7cc01afa..3ef848f9 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -57,6 +57,9 @@ jobs:
ctest --verbose
source deactivate_run.sh
- name: Test Installed Celix
+ env:
+ CC: ${{ matrix.compiler[0] }}
+ CXX: ${{ matrix.compiler[1] }}
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 .