From 906eb7169fda47416eebaf210962fbd9c54f2c7f Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Thu, 19 Oct 2023 17:40:37 +0300 Subject: [PATCH 1/2] CI: Update Bitcoin Core from 25.0 to 25.1 --- .github/workflows/unittests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index c1ec1fca0..2d507d162 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -10,7 +10,7 @@ jobs: matrix: os: [macos-latest, ubuntu-latest] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] - bitcoind-version: ["0.18.0", "25.0"] + bitcoind-version: ["0.18.0", "25.1"] steps: - uses: actions/checkout@v3 From d25457b209263116ceb4634eea4878274bb5d101 Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Thu, 19 Oct 2023 17:47:52 +0300 Subject: [PATCH 2/2] CI: Disable venv caching --- .github/workflows/unittests.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 2d507d162..326ab02b5 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -18,14 +18,14 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Cache venv - id: cache-venv - uses: actions/cache@v3 - env: - cache-name: venv - with: - path: jmvenv - key: ${{ runner.os }}-${{ matrix.python-version }}-${{ env.cache-name }}-${{ hashFiles('requirements/*.txt', 'install.sh', '*/setup.py') }} +# - name: Cache venv +# id: cache-venv +# uses: actions/cache@v3 +# env: +# cache-name: venv +# with: +# path: jmvenv +# key: ${{ runner.os }}-${{ matrix.python-version }}-${{ env.cache-name }}-${{ hashFiles('requirements/*.txt', 'install.sh', '*/setup.py') }} - name: Setup joinmarket + virtualenv if: steps.cache-venv.outputs.cache-hit != 'true' run: |