We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad27ffc commit fa3eb29Copy full SHA for fa3eb29
.github/workflows/ci.yml
@@ -19,7 +19,12 @@ jobs:
19
sudo apt-get update
20
sudo apt-get install build-essential cmake pkgconf python3 libevent-dev libboost-dev capnproto libcapnp-dev
21
- name: Checkout Bitcoin Core
22
- run: git clone --depth 1 --branch master https://github.com/bitcoin/bitcoin.git
+ run: |
23
+ git clone --depth 1 https://github.com/bitcoin/bitcoin.git
24
+ # DO NOT MERGE: switch to bitcoin/bitcoin#33922 PR branch
25
+ cd bitcoin
26
+ git fetch --depth 1 origin pull/33922/head:pr-33922
27
+ git checkout pr-33922
28
- name: Build Bitcoin Core
29
run: cd bitcoin && cmake -B build -DENABLE_WALLET=OFF -DBUILD_TESTS=OFF && cmake --build build -j 16
30
- name: Run Bitcoin Core Daemon
0 commit comments