CI: use "--no-install-recommends" for apt-get
authorIlia Shipitsin <chipitsine@gmail.com>
Wed, 29 May 2024 19:59:14 +0000 (21:59 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 29 May 2024 20:37:26 +0000 (22:37 +0200)
this reduces number of packages installed by 1

.github/workflows/coverity.yml
.github/workflows/vtest.yml

index 0b3c4af..18f4a25 100644 (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
index 284bff7..367f280 100644 (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 \