1
0
Fork 0
forked from lthn/blockchain

Disable Conan package caching in CI workflows

Set cache_packages to false in build workflows for Linux, macOS ARM64, and Windows Intel. This change ensures Conan does not use cached packages during CI builds, which may help avoid issues with stale or incompatible dependencies.
This commit is contained in:
Snider 2025-10-01 23:57:05 +01:00
parent eadf6ebfec
commit 370ec64a53
3 changed files with 3 additions and 3 deletions

View file

@ -39,7 +39,7 @@ jobs:
uses: conan-io/setup-conan@v1
with:
home: ${{ github.workspace }}/build/sdk
cache_packages: true
cache_packages: false
- name: Compile Release
run: make release CPU_CORES=4 TESTNET=${{ inputs.chain-network == 'testnet' && '1' || '0' }}

View file

@ -39,7 +39,7 @@ jobs:
uses: conan-io/setup-conan@v1
with:
home: ${{ github.workspace }}/build/sdk
cache_packages: true
cache_packages: false
# - name: Compile Release
# run: make apple-clang-armv8 TESTNET=${{ inputs.chain-network == 'testnet' && '1' || '0' }}

View file

@ -36,7 +36,7 @@ jobs:
uses: conan-io/setup-conan@v1
with:
home: ${{ github.workspace }}/build/sdk
cache_packages: true
cache_packages: false
- name: Compile Release
run: make release STATIC=1 CPU_CORES=4 TESTNET=${{ inputs.chain-network == 'testnet' && '1' || '0' }}