add library install step in linux build action

This commit is contained in:
Martin Michelsen
2022-01-03 10:36:30 -08:00
committed by GitHub
parent 9b22a8e960
commit 438483574f
+9
View File
@@ -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}}