From 1ac459250367361ec354dc7fdf213fa5e69a85c6 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 15 Sep 2025 09:34:27 +0200 Subject: [PATCH] Aparrently, the act docker container does not have `cmake` installed. Adding this should not make a significant impact on workflow performance. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6eb3078..e91877a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,7 +25,7 @@ jobs: if: runner.os == 'Linux' run: | sudo apt update - sudo apt install -y libwayland-dev libxkbcommon-dev xorg-dev + sudo apt install -y libwayland-dev libxkbcommon-dev xorg-dev cmake - uses: actions/cache@v4 with: