mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-12-11 11:24:28 +03:00
fix checking of matrix.configuration.checkout_blocks_and_plots (#15454)
* fix checking of matrix.configuration.checkout_blocks_and_plots * enable more blocks and plots downloading
This commit is contained in:
parent
e2a5f8d7da
commit
ba3ac20c55
4
.github/workflows/test-single.yml
vendored
4
.github/workflows/test-single.yml
vendored
@ -193,7 +193,7 @@ jobs:
|
||||
key: ${{ env.BLOCKS_AND_PLOTS_VERSION }}
|
||||
|
||||
- name: Checkout test blocks and plots (macOS, Ubuntu)
|
||||
if: steps.test-blocks-plots.outputs.cache-hit != 'true' && (matrix.os.matrix == 'ubuntu' || matrix.os.matrix == 'macos')
|
||||
if: matrix.configuration.checkout_blocks_and_plots && steps.test-blocks-plots.outputs.cache-hit != 'true' && (matrix.os.matrix == 'ubuntu' || matrix.os.matrix == 'macos')
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
@ -202,7 +202,7 @@ jobs:
|
||||
mv ${{ github.workspace }}/test-cache-${{ env.BLOCKS_AND_PLOTS_VERSION }}/* ${{ github.workspace }}/.chia
|
||||
|
||||
- name: Checkout test blocks and plots (Windows)
|
||||
if: steps.test-blocks-plots.outputs.cache-hit != 'true' && matrix.os.matrix == 'windows'
|
||||
if: matrix.configuration.checkout_blocks_and_plots && steps.test-blocks-plots.outputs.cache-hit != 'true' && matrix.os.matrix == 'windows'
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
|
@ -2,4 +2,4 @@ from __future__ import annotations
|
||||
|
||||
parallel = True
|
||||
job_timeout = 50
|
||||
checkout_blocks_and_plots = False
|
||||
checkout_blocks_and_plots = True
|
||||
|
3
tests/fee_estimation/config.py
Normal file
3
tests/fee_estimation/config.py
Normal file
@ -0,0 +1,3 @@
|
||||
from __future__ import annotations
|
||||
|
||||
checkout_blocks_and_plots = True
|
3
tests/wallet/vc_wallet/config.py
Normal file
3
tests/wallet/vc_wallet/config.py
Normal file
@ -0,0 +1,3 @@
|
||||
from __future__ import annotations
|
||||
|
||||
checkout_blocks_and_plots = True
|
Loading…
Reference in New Issue
Block a user