CI: VTest: accelerate package install a bit

let's check and install only package is required
This commit is contained in:
Ilia Shipitsin 2024-05-30 15:40:31 +02:00 committed by William Lallemand
parent 485b206f61
commit f3e6dfdc92

View File

@ -82,10 +82,9 @@ jobs:
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get --no-install-recommends -y install \ sudo apt-get --no-install-recommends -y install \
liblua5.4-dev \ ${{ contains(matrix.FLAGS, 'USE_LUA=1') && 'liblua5.4-dev' || '' }} \
libpcre2-dev \ ${{ contains(matrix.FLAGS, 'USE_PCRE2=1') && 'libpcre2-dev' || '' }} \
libsystemd-dev \ ${{ contains(matrix.ssl, 'BORINGSSL=yes') && 'ninja-build' || '' }} \
ninja-build \
socat \ socat \
gdb gdb
- name: Install brew dependencies - name: Install brew dependencies