Skip to content

Commit d473151

Browse files
committed
fix: prune conan cache
1 parent 19f585d commit d473151

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/nightly_bench.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,7 @@ jobs:
5757
GITHUB_REF_NAME: ${{ github.ref_name }}
5858
BENCH_SOURCE: github-actions
5959
run: python3 scripts/upload_to_influx.py
60+
61+
- name: Prune Conan cache
62+
run: |
63+
conan cache clean --build

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@ jobs:
4141
with:
4242
files: build/Release/tradercpp
4343
token: ${{ secrets.PAT_RELEASE_20261020 }}
44+
45+
- name: Prune Conan cache
46+
run: |
47+
conan cache clean --build

.github/workflows/reusable_build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,7 @@ jobs:
8484
-Dsonar.sources=src
8585
-Dsonar.tests=tests
8686
continue-on-error: true
87+
88+
- name: Prune Conan cache
89+
run: |
90+
conan cache clean --build

0 commit comments

Comments
 (0)