From 4e2747825400695df65836fd843ac0bc541d004b Mon Sep 17 00:00:00 2001 From: fmhoeger Date: Tue, 30 Jan 2024 17:26:22 -0600 Subject: [PATCH] Add bitcoind-version 26.0 to matrix Remove bitcoind-version 22.0 from matrix --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 719a02e..00e503f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,13 +12,14 @@ on: jobs: build-and-test: - name: Test PY=${{ matrix.python-version }}, EXP=${{ matrix.experimental }}, DEP=${{ matrix.deprecated }} + name: Test PY=${{ matrix.python-version }}, BCD=${{ matrix.bitcoind-version }}, EXP=${{ matrix.experimental }}, DEP=${{ matrix.deprecated }} runs-on: ubuntu-latest timeout-minutes: 60 strategy: fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + bitcoind-version: ["26.0"] experimental: [1] deprecated: [0] @@ -36,7 +37,7 @@ jobs: - name: Download runtime dependencies run: | - export BITCOIND_VERSION="22.0" + export BITCOIND_VERSION=${{ matrix.bitcoind-version }} wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIND_VERSION}/bitcoin-${BITCOIND_VERSION}-x86_64-linux-gnu.tar.gz tar -xzf bitcoin-${BITCOIND_VERSION}-x86_64-linux-gnu.tar.gz sudo mv bitcoin-${BITCOIND_VERSION}/bin/* /usr/local/bin