From 1b6198f7d9935cb122a374c8930cd0915a67f984 Mon Sep 17 00:00:00 2001 From: Nikl174 <68596975+Nikl174@users.noreply.github.com> Date: Fri, 19 Apr 2024 21:57:25 +0200 Subject: [PATCH] Update cmake-single-platform.yml corrected logging package install --- .github/workflows/cmake-single-platform.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index bfb06ea..943ce8c 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -1,6 +1,4 @@ -# This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage. -# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml -name: CMake on a single platform +name: CMake on linux on: push: @@ -20,7 +18,7 @@ jobs: - uses: actions/checkout@v3 # todo improve dep install - name: Install dependencies - run: sudo apt-get install -y liblcms2-dev colord easyloggingpp + run: sudo apt-get install -y liblcms2-dev colord libeasyloggingpp-dev - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}