CI: use "--no-install-recommends" for apt-get

this reduces number of packages installed by 1
This commit is contained in:
Ilia Shipitsin 2024-05-29 21:59:14 +02:00 committed by Willy Tarreau
parent e349159a34
commit 01c213a4bb
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ jobs:
- name: Install apt dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
sudo apt-get --no-install-recommends -y install \
liblua5.3-dev \
libsystemd-dev
- name: Install QUICTLS

View File

@ -81,7 +81,7 @@ jobs:
if: ${{ startsWith(matrix.os, 'ubuntu-') }}
run: |
sudo apt-get update
sudo apt-get install -y \
sudo apt-get --no-install-recommends -y install \
liblua5.3-dev \
libpcre2-dev \
libsystemd-dev \