diff options
| author | Jacob Walls <jacobtylerwalls@gmail.com> | 2026-02-13 09:10:36 -0500 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2026-02-13 13:37:19 -0500 |
| commit | f6384479ad77c49e0537a5f71eb0331af9eefc32 (patch) | |
| tree | e610d0137db824f87adc0588af71c13fbcc6e6af /.github | |
| parent | fee2cb2d6dfefad614b27e659f5648c793006ef8 (diff) | |
Installed libmemcached-dev in screenshots workflow.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/screenshots.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/screenshots.yml b/.github/workflows/screenshots.yml index a581d129f9..851ad6b94d 100644 --- a/.github/workflows/screenshots.yml +++ b/.github/workflows/screenshots.yml @@ -30,6 +30,10 @@ jobs: python-version: '3.14' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' + - name: Update apt repo + run: sudo apt update + - name: Install libmemcached-dev for pylibmc + run: sudo apt install -y libmemcached-dev - name: Install and upgrade packaging tools run: python -m pip install --upgrade pip wheel - run: python -m pip install -r tests/requirements/py3.txt -e . |
