Skip to content

Commit

Permalink
Merge #1580: CI: Update Bitcoin Core from 25.0 to 25.1 and disable ve…
Browse files Browse the repository at this point in the history
…nv caching

d25457b CI: Disable venv caching (Kristaps Kaupe)
906eb71 CI: Update Bitcoin Core from 25.0 to 25.1 (Kristaps Kaupe)

Pull request description:

  https://bitcoincore.org/en/releases/25.1/

  Also disabled venv caching again, it caused problems again. https://github.com/JoinMarket-Org/joinmarket-clientserver/actions/runs/6576298449

Top commit has no ACKs.

Tree-SHA512: d641963b0d2eee61b84d84dd285e47908aa6c6775f4c59c6cc1da52fa2be597e5d74a20ea31008629dbfc31565dc0b37b8d4983dcc7072ca687dc3d00f7d812e
  • Loading branch information
kristapsk committed Oct 21, 2023
2 parents 9654bce + d25457b commit f847646
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ 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
- name: Set up Python ${{ matrix.python-version }}
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: |
Expand Down

0 comments on commit f847646

Please sign in to comment.