From 706ad7059125f32158dad4441938c08fa910f143 Mon Sep 17 00:00:00 2001 From: Luis Angerstein Date: Thu, 9 Mar 2023 12:00:39 +0100 Subject: [PATCH] Enable systemd_sink tests in linux pipeline (#2669) * Install libsystemd-dev in linux pipeline Without this package the test_systemd_sink.cpp will not be tested. * Install pkg-config in linux pipeline --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f1f60af..19645656 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@main - name: Setup run: | - apt-get update && apt-get install -y curl git + apt-get update && apt-get install -y curl git pkg-config libsystemd-dev CMAKE_VERSION="3.24.2" curl -sSL https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/cmake-${CMAKE_VERSION}-linux-x86_64.sh -o install-cmake.sh chmod +x install-cmake.sh