mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 09:48:19 +01:00
Merge pull request #5928 from Roasbeef/bitcoind-22
script: update CI to bitcoind 22
This commit is contained in:
commit
a6f22c6185
4 changed files with 7 additions and 5 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -16,7 +16,7 @@ env:
|
||||||
# go needs absolute directories, using the $HOME variable doesn't work here.
|
# go needs absolute directories, using the $HOME variable doesn't work here.
|
||||||
GOCACHE: /home/runner/work/go/pkg/build
|
GOCACHE: /home/runner/work/go/pkg/build
|
||||||
GOPATH: /home/runner/work/go
|
GOPATH: /home/runner/work/go
|
||||||
BITCOIN_VERSION: 0.20.1
|
BITCOIN_VERSION: "22.0"
|
||||||
|
|
||||||
# If you change this value, please change it in the following files as well:
|
# If you change this value, please change it in the following files as well:
|
||||||
# /.travis.yml
|
# /.travis.yml
|
||||||
|
|
|
@ -26,7 +26,7 @@ go:
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- GOCACHE=$HOME/.go-build
|
- GOCACHE=$HOME/.go-build
|
||||||
- BITCOIN_VERSION=0.20.1
|
- BITCOIN_VERSION="22.0"
|
||||||
|
|
||||||
sudo: required
|
sudo: required
|
||||||
|
|
||||||
|
|
|
@ -323,6 +323,8 @@ messages directly. There is no routing/path finding involved.
|
||||||
|
|
||||||
* [Upgrade the sub packages to 1.16](https://github.com/lightningnetwork/lnd/pull/5813)
|
* [Upgrade the sub packages to 1.16](https://github.com/lightningnetwork/lnd/pull/5813)
|
||||||
|
|
||||||
|
* [CI has been upgraded to build against bitcoind 22.0](https://github.com/lightningnetwork/lnd/pull/5928)
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
* [Outdated warning about unsupported pruning was replaced with clarification that LND **does**
|
* [Outdated warning about unsupported pruning was replaced with clarification that LND **does**
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
|
|
||||||
set -ev
|
set -ev
|
||||||
|
|
||||||
BITCOIND_VERSION=${BITCOIN_VERSION:-0.20.1}
|
BITCOIND_VERSION=${BITCOIN_VERSION:-22.0}
|
||||||
|
|
||||||
docker pull ruimarinho/bitcoin-core:$BITCOIND_VERSION
|
docker pull lightninglabs/bitcoin-core:$BITCOIND_VERSION
|
||||||
CONTAINER_ID=$(docker create ruimarinho/bitcoin-core:$BITCOIND_VERSION)
|
CONTAINER_ID=$(docker create lightninglabs/bitcoin-core:$BITCOIND_VERSION)
|
||||||
sudo docker cp $CONTAINER_ID:/opt/bitcoin-$BITCOIND_VERSION/bin/bitcoind /usr/local/bin/bitcoind
|
sudo docker cp $CONTAINER_ID:/opt/bitcoin-$BITCOIND_VERSION/bin/bitcoind /usr/local/bin/bitcoind
|
||||||
docker rm $CONTAINER_ID
|
docker rm $CONTAINER_ID
|
||||||
|
|
Loading…
Add table
Reference in a new issue