commit 6e2e50007181ef3cbd332fbffbb95993c0b3b58c
Author: Turo Lamminen <turol@iki.fi>
AuthorDate: Wed Jun 8 18:02:59 2022 +0300
Commit: Turo Lamminen <turol@iki.fi>
CommitDate: Wed Jun 8 18:02:59 2022 +0300
Install dependencies to make cmake happy
---
.github/workflows/cpp-linter.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/cpp-linter.yml b/.github/workflows/cpp-linter.yml
index 4146046d..60a94edd 100644
--- a/.github/workflows/cpp-linter.yml
+++ b/.github/workflows/cpp-linter.yml
@@ -15,6 +15,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
+ - name: Install dependencies
+ run: sudo apt-get update && sudo apt-get install libpng-dev libsamplerate0-dev libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev ninja-build
- name: Run cmake to generate compilation database
run: cmake -S . -B . -G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=1
- uses: cpp-linter/cpp-linter-action@v1