From 5aa763475390b06658d073e33d185ac93fa40df8 Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 26 May 2023 11:46:47 +0100 Subject: [PATCH] ci: use Bitcoin Core 25.0 --- .github/scripts/setup.sh | 2 +- .github/workflows/bsd.yml | 10 +++++----- .github/workflows/ci.yaml | 4 ++-- .github/workflows/macos.yaml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/scripts/setup.sh b/.github/scripts/setup.sh index f81bb0ae1..146437a7f 100755 --- a/.github/scripts/setup.sh +++ b/.github/scripts/setup.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e export DEBIAN_FRONTEND=noninteractive -export BITCOIN_VERSION=24.1 +export BITCOIN_VERSION=25.0 export ELEMENTS_VERSION=22.0.2 export RUST_VERSION=stable diff --git a/.github/workflows/bsd.yml b/.github/workflows/bsd.yml index 1f58ebac5..bc19d754c 100644 --- a/.github/workflows/bsd.yml +++ b/.github/workflows/bsd.yml @@ -44,12 +44,12 @@ jobs: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly-2021-08-3z1 cd /tmp/ || exit 1 - wget https://bitcoincore.org/bin/bitcoin-core-24.1/bitcoin-24.1-x86_64-linux-gnu.tar.gz - tar -xf bitcoin-24.1-x86_64-linux-gnu.tar.bz2 - sudo mv bitcoin-24.1/bin/* /usr/local/bin + wget https://bitcoincore.org/bin/bitcoin-core-25.0/bitcoin-25.0-x86_64-linux-gnu.tar.gz + tar -xf bitcoin-25.0-x86_64-linux-gnu.tar.bz2 + sudo mv bitcoin-25.0/bin/* /usr/local/bin rm -rf \ - bitcoin-24.1-x86_64-linux-gnu.tar.gz \ - bitcoin-24.1 + bitcoin-25.0-x86_64-linux-gnu.tar.gz \ + bitcoin-25.0 run: | PATH=/root/.local/bin:$PATH diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 193a29f2b..7e55242ce 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -190,7 +190,7 @@ jobs: timeout-minutes: 120 env: COMPAT: 1 - BITCOIN_VERSION: 24.1 + BITCOIN_VERSION: "25.0" ELEMENTS_VERSION: 22.0.2 RUST_PROFILE: release # Has to match the one in the compile step PYTEST_OPTS: --timeout=1200 @@ -287,7 +287,7 @@ jobs: timeout-minutes: 120 env: COMPAT: 1 - BITCOIN_VERSION: 24.1 + BITCOIN_VERSION: "25.0" ELEMENTS_VERSION: 22.0.2 RUST_PROFILE: release # Has to match the one in the compile step VALGRIND: 1 diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index 1969a381c..9fea1e6eb 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -21,7 +21,7 @@ jobs: run: | export PATH="/usr/local/opt:/Users/runner/.local/bin:/Users/runner/Library/Python/3.10/bin:$PATH" - export BITCOIN_VERSION=24.1 + export BITCOIN_VERSION=25.0 brew install wget autoconf automake libtool python@3.10 gnu-sed gettext libsodium (