From c88237d00554a4dd7d1368b62d71c12b48cfb963 Mon Sep 17 00:00:00 2001 From: khromenokroman Date: Thu, 22 Aug 2024 17:07:34 +0200 Subject: [PATCH] iox-#2330 Add libsystemd-dev to install dependencies This change updates the GitHub Action to include the libsystemd-dev package in the list of dependencies. Adding this package ensures that all necessary development libraries are available for builds. --- .github/actions/install-iceoryx-deps-and-clang/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-iceoryx-deps-and-clang/action.yml b/.github/actions/install-iceoryx-deps-and-clang/action.yml index 5b4c51da03..64a28d3094 100644 --- a/.github/actions/install-iceoryx-deps-and-clang/action.yml +++ b/.github/actions/install-iceoryx-deps-and-clang/action.yml @@ -8,7 +8,7 @@ runs: sudo wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main" sudo apt-get update - sudo apt-get install -y libacl1-dev libncurses5-dev + sudo apt-get install -y libacl1-dev libncurses5-dev libsystemd-dev sudo apt-get install -y clang-format-15 clang-tidy-15 clang-tools-15 clang-15 lld sudo rm /usr/bin/clang sudo rm /usr/bin/clang++