From 8effb878cd84a25da8ff9d33e574b3acd9e14627 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Wed, 3 Jul 2024 21:44:37 +0100 Subject: [PATCH] ci(build): Install dependencies in build workflow ensure that the dependencies needed to build the package are installed to the container used to run the workflow. --- .gitea/workflows/build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index f9820aa..b03073b 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -11,5 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + + - name: Install dependencies + run: sudo apt-get install libbsd-dev libsystemd-dev + - name: Run make run: make