Skip to content

Commit 26d081d

Browse files
authored
chore: copy existing asm crates from alpen (#1)
* chore: copy existing asm crates from alpen * fix(ci): install bitcoind * fix: arb deposit entry
1 parent 5d92f59 commit 26d081d

File tree

183 files changed

+23559
-38
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+23559
-38
lines changed

.github/workflows/unit.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,19 @@ jobs:
4040
with:
4141
tool: nextest
4242

43+
- name: Install bitcoind
44+
env:
45+
BITCOIND_VERSION: "30.2"
46+
BITCOIND_ARCH: "x86_64-linux-gnu"
47+
run: |
48+
curl -fsSLO --proto "=https" --tlsv1.3 "https://bitcoincore.org/bin/bitcoin-core-$BITCOIND_VERSION/bitcoin-$BITCOIND_VERSION-$BITCOIND_ARCH.tar.gz"
49+
curl -fsSLO --proto "=https" --tlsv1.3 "https://bitcoincore.org/bin/bitcoin-core-$BITCOIND_VERSION/SHA256SUMS"
50+
sha256sum --ignore-missing --check SHA256SUMS
51+
tar xzf "bitcoin-$BITCOIND_VERSION-$BITCOIND_ARCH.tar.gz"
52+
sudo install -m 0755 -t /usr/local/bin bitcoin-"$BITCOIND_VERSION"/bin/*
53+
bitcoind --version
54+
rm -rf SHA256SUMS "bitcoin-$BITCOIND_VERSION" "bitcoin-$BITCOIND_VERSION-$BITCOIND_ARCH.tar.gz"
55+
4356
- name: Rust cache
4457
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2
4558
with:

0 commit comments

Comments
 (0)