8000 CI: run `apt-get update` before installing libvips by kleisauke · Pull Request #538 · libvips/pyvips · GitHub
[go: up one dir, main page]

Skip to content

CI: run apt-get update before installing libvips #538

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
CI: run apt-get update before installing libvips
  • Loading branch information
kleisauke committed May 16, 2025
commit 85db901c8d32c052dc541230ddf83505b27f497c
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line cha 601B nge
Expand Up @@ -23,7 +23,9 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install libvips
run: sudo apt-get install --no-install-recommends libvips
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends libvips

- name: Lint with flake8
run: |
Expand Down
0