Skip to content

Commit

Permalink
build: remove libmemcached11 before installing -dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdanp committed Jul 20, 2023
1 parent 50c135c commit 76578a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: sudo apt-get update -qq && sudo apt-get install -y libmemcached-dev
- run: |
sudo apt-get update
sudo apt-get remove libhashkit2 libmemcached11 || true
sudo apt-get install -y libmemcached-dev
- run: pip install -e '.[dev]'
- run: pytest --benchmark-skip
if: ${{ matrix.concurrency == 'cpython' }}
Expand Down

0 comments on commit 76578a6

Please sign in to comment.