This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/614-github-cache-build-deps
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to
refs/heads/feature/614-github-cache-build-deps by this push:
new 6561a93c Avoid uploading Celix to Github Actions cache.
6561a93c is described below
commit 6561a93cd45b557834e359901d584ff0ff708d83
Author: PengZheng <[email protected]>
AuthorDate: Tue Aug 29 19:47:46 2023 +0800
Avoid uploading Celix to Github Actions cache.
---
.github/workflows/conan_create.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/conan_create.yml
b/.github/workflows/conan_create.yml
index 3c02a96e..b491cd28 100644
--- a/.github/workflows/conan_create.yml
+++ b/.github/workflows/conan_create.yml
@@ -52,6 +52,9 @@ jobs:
CXX: ${{ matrix.compiler[1] }}
run: |
conan inspect . | awk 'BEGIN { FS="[\t:]+"; output=0 } /build/ &&
!/build_all/ { if(output) print $1} /^options/ {output=1}
/^options_definitions/ {output=0}' | while read option; do conan create . -c
tools.cmake.cmaketoolchain:generator=Ninja -b missing -o celix/*:${option}=True
-pr:b default -pr:h default -s:h build_type=${{ matrix.type }} -tf
examples/conan_test_package_v2 -o celix/*:celix_cxx17=True -o
celix/*:celix_install_deprecated_api=True || exit 1; done
+ - name: Remove Celix
+ run: |
+ conan remove -c celix/*
mac-build:
runs-on: macOS-11
@@ -79,3 +82,6 @@ jobs:
- name: Create Celix
run: |
conan inspect . -a options | awk 'BEGIN { FS="[\t:]+" } /build/ &&
!/build_all/ { print $1}' | while read option; do conan create . -c
tools.cmake.cmaketoolchain:generator=Ninja -b missing -o celix:${option}=True
-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
--require-override=zlib/1.2.13 || exit 1; done
+ - name: Remove Celix
+ run: |
+ conan remove -f 'celix/*'