From c075a8d9d7d399ea6cb4b93160c65bf264cdc453 Mon Sep 17 00:00:00 2001 From: Mathias Kraus Date: Fri, 3 Jun 2022 14:00:21 +0200 Subject: [PATCH] Fix build by adding libacl and libncurses --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84c1139..e33890c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,5 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: cmake -B build && cmake --build build - + - name: Install dependencies + run: sudo apt update && sudo apt install -y libacl1-dev libncurses5-dev + - name: Build + run: cmake -B build && cmake --build build