Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use Bitcoin Core 26.1 #7196

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
export DEBIAN_FRONTEND=noninteractive
export BITCOIN_VERSION=25.1
export BITCOIN_VERSION=26.1
export ELEMENTS_VERSION=22.0.2
export RUST_VERSION=stable

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,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-25.1/bitcoin-25.1-x86_64-linux-gnu.tar.gz
tar -xf bitcoin-25.1-x86_64-linux-gnu.tar.bz2
sudo mv bitcoin-25.1/bin/* /usr/local/bin
wget https://bitcoincore.org/bin/bitcoin-core-26.1/bitcoin-26.1-x86_64-linux-gnu.tar.gz
tar -xf bitcoin-26.1-x86_64-linux-gnu.tar.bz2
sudo mv bitcoin-26.1/bin/* /usr/local/bin
rm -rf \
bitcoin-25.1-x86_64-linux-gnu.tar.gz \
bitcoin-25.1
bitcoin-26.1-x86_64-linux-gnu.tar.gz \
bitcoin-26.1

run: |
PATH=/root/.local/bin:$PATH
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
runs-on: ubuntu-22.04
timeout-minutes: 120
env:
BITCOIN_VERSION: "25.1"
BITCOIN_VERSION: "26.1"
ELEMENTS_VERSION: 22.0.2
RUST_PROFILE: release # Has to match the one in the compile step
PYTEST_OPTS: --timeout=1200 --force-flaky
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
runs-on: ubuntu-22.04
timeout-minutes: 120
env:
BITCOIN_VERSION: "25.1"
BITCOIN_VERSION: "26.1"
ELEMENTS_VERSION: 22.0.2
RUST_PROFILE: release # Has to match the one in the compile step
CFG: compile-gcc
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
runs-on: ubuntu-22.04
timeout-minutes: 120
env:
BITCOIN_VERSION: "25.1"
BITCOIN_VERSION: "26.1"
ELEMENTS_VERSION: 22.0.2
RUST_PROFILE: release
SLOW_MACHINE: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
export PATH="/usr/local/opt:/Users/runner/.local/bin:/Users/runner/Library/Python/3.10/bin:$PATH"

export BITCOIN_VERSION=25.1
export BITCOIN_VERSION=26.1
brew install wget autoconf automake libtool [email protected] gnu-sed gettext libsodium

(
Expand Down
Loading