We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e78d527 commit a804e4fCopy full SHA for a804e4f
1 file changed
.github/workflows/ci.yml
@@ -25,7 +25,12 @@ jobs:
25
key: ccache-${{ runner.os }}-${{ github.sha }}
26
restore-keys: ccache-${{ runner.os }}-
27
- name: Checkout Bitcoin Core
28
- run: git clone --depth 1 --branch master https://github.com/bitcoin/bitcoin.git
+ run: |
29
+ git clone --depth 1 https://github.com/bitcoin/bitcoin.git
30
+ # DO NOT MERGE: switch to bitcoin/bitcoin#29409 PR branch
31
+ cd bitcoin
32
+ git fetch --depth 1 origin pull/29409/head:pr-29409
33
+ git checkout pr-29409
34
- name: Build Bitcoin Core
35
run: |
36
cd bitcoin
0 commit comments