Skip to content

Commit 92aef81

Browse files
author
MarcoFalke
committed
fix folders
1 parent 64be91f commit 92aef81

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
- name: Checkout
3636
uses: actions/checkout@v5
3737
with:
38+
path: qa-assets
3839
fetch-depth: 1
3940

4041
- name: Checkout Bitcoin Core
4142
uses: actions/checkout@v5
4243
with:
4344
repository: bitcoin/bitcoin
44-
path: bitcoin-core
4545
fetch-depth: 1
4646

4747
- name: Configure environment
@@ -60,7 +60,10 @@ jobs:
6060
run: sudo sysctl -w vm.mmap_rnd_bits=28
6161

6262
- name: CI script
63-
run: ./bitcoin-core/ci/test_run_all.sh
63+
run: |
64+
mkdir -p ./ci/scratch/qa-assets
65+
mv ./qa-assets/{.git,fuzz_corpora} ./ci/scratch/qa-assets/
66+
./ci/test_run_all.sh
6467
6568
- name: Save caches
6669
uses: willcl-ark/bitcoin/.github/actions/save-caches@cirrus-runners

0 commit comments

Comments
 (0)