From 1e601da194e778fd032c0a85050492cc53de59fe Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 23 Feb 2025 12:04:52 -0500 Subject: [PATCH] Install CMake for build --- .forgejo/workflows/build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 89b956b..78cc504 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -10,6 +10,10 @@ jobs: steps: - name: Check out the code uses: actions/checkout@v4 + - name: Install the toolchain + run: | + sudo apt-get update + sudo apt-get -y install cmake - name: Set up the build environment run: cmake . - name: Compile the code