Browse Source

Disable venv caching

master
Kristaps Kaupe 3 years ago
parent
commit
3641f1e1a4
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 18
      .github/workflows/unittests.yml

18
.github/workflows/unittests.yml

@ -17,16 +17,16 @@ 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'
# if: steps.cache-venv.outputs.cache-hit != 'true'
run: |
./install.sh --develop --with-qt
./jmvenv/bin/python -m pip install --upgrade pip

Loading…
Cancel
Save