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:
parent
eadf6ebfec
commit
370ec64a53
3 changed files with 3 additions and 3 deletions
2
.github/workflows/build-linux-intel.yml
vendored
2
.github/workflows/build-linux-intel.yml
vendored
|
|
@ -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' }}
|
||||
|
|
|
|||
2
.github/workflows/build-macos-arm64.yml
vendored
2
.github/workflows/build-macos-arm64.yml
vendored
|
|
@ -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' }}
|
||||
|
|
|
|||
2
.github/workflows/build-windows-intel.yml
vendored
2
.github/workflows/build-windows-intel.yml
vendored
|
|
@ -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' }}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue