Browse Source

Merge JoinMarket-Org/joinmarket-clientserver#1580: CI: Update Bitcoin Core from 25.0 to 25.1 and disable venv caching

d25457b209 CI: Disable venv caching (Kristaps Kaupe)
906eb7169f 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
master
Kristaps Kaupe 2 years ago
parent
commit
f847646e2a
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 18
      .github/workflows/unittests.yml

18
.github/workflows/unittests.yml

@ -10,7 +10,7 @@ jobs:
matrix: matrix:
os: [macos-latest, ubuntu-latest] os: [macos-latest, ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] 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: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -18,14 +18,14 @@ jobs:
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Cache venv # - name: Cache venv
id: cache-venv # id: cache-venv
uses: actions/cache@v3 # uses: actions/cache@v3
env: # env:
cache-name: venv # cache-name: venv
with: # with:
path: jmvenv # path: jmvenv
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ env.cache-name }}-${{ hashFiles('requirements/*.txt', 'install.sh', '*/setup.py') }} # key: ${{ runner.os }}-${{ matrix.python-version }}-${{ env.cache-name }}-${{ hashFiles('requirements/*.txt', 'install.sh', '*/setup.py') }}
- name: Setup joinmarket + virtualenv - name: Setup joinmarket + virtualenv
if: steps.cache-venv.outputs.cache-hit != 'true' if: steps.cache-venv.outputs.cache-hit != 'true'
run: | run: |

Loading…
Cancel
Save