Skip to content

Commit 07f86c4

Browse files
author
MarcoFalke
committed
fix folders
1 parent 64be91f commit 07f86c4

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ jobs:
3232
file-env: './ci/test/00_setup_env_native_fuzz.sh'
3333

3434
steps:
35-
- name: Checkout
35+
- name: Checkout Bitcoin Core
3636
uses: actions/checkout@v5
3737
with:
38+
repository: bitcoin/bitcoin
3839
fetch-depth: 1
3940

40-
- name: Checkout Bitcoin Core
41+
- name: Checkout
4142
uses: actions/checkout@v5
4243
with:
43-
repository: bitcoin/bitcoin
44-
path: bitcoin-core
44+
path: qa-assets
4545
fetch-depth: 1
4646

4747
- name: Configure environment
@@ -56,11 +56,14 @@ jobs:
5656
with:
5757
use-cirrus: false
5858

59-
- name: Set mmap_rnd_bits to prevent crashes due to high ASLR entropy
60-
run: sudo sysctl -w vm.mmap_rnd_bits=28
61-
6259
- name: CI script
63-
run: ./bitcoin-core/ci/test_run_all.sh
60+
run: |
61+
mkdir -p ./ci/scratch/qa-assets
62+
mv ./qa-assets/{.git,fuzz_corpora} ./ci/scratch/qa-assets/
63+
./ci/test_run_all.sh
6464
6565
- name: Save caches
6666
uses: willcl-ark/bitcoin/.github/actions/save-caches@cirrus-runners
67+
68+
- name: Set mmap_rnd_bits to prevent crashes due to high ASLR entropy
69+
run: sudo sysctl -w vm.mmap_rnd_bits=28

0 commit comments

Comments
 (0)