From 438483574f4aeb0fd84fef3af4b656e1fa65934b Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Mon, 3 Jan 2022 10:36:30 -0800 Subject: [PATCH] add library install step in linux build action --- .github/workflows/cmake.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 1881ee10..4bc5d41d 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -16,6 +16,15 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Install libraries + run: | + git clone https://github.com/fuzziqersoftware/phosg.git + cd phosg + cmake . + make + sudo make install + sudo apt-get install -y libevent-dev + - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}