From 2885daf577492fa48a5525835ece603d7d5a1b65 Mon Sep 17 00:00:00 2001 From: Leo Sulzbacher Date: Sat, 14 Mar 2026 13:44:35 +0100 Subject: [PATCH] fix: apply hotfix-0001 fixes the ci pipeline Reviewed-on: https://git.lowearthorbit.de/lowearthorbit/curtle/pulls/1 --- .gitea/workflows/ci.yml | 4 +++- CMakeLists.txt | 4 ++-- include/curtle/curtle.h | 6 ++++++ 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d89e6d7..cd23a60 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,7 +10,9 @@ jobs: - uses: actions/checkout@v3 - name: install deps - run: sudo apt install cmake + run: | + apt update + apt install cmake -y - name: build run: | diff --git a/CMakeLists.txt b/CMakeLists.txt index 58f442b..b9f754f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -cmake_minimum_required(VERSION 4.1) -project(curtle VERSION 0.1.0 LANGUAGES C) +cmake_minimum_required(VERSION 3.10) +project(curtle VERSION 0.1.1 LANGUAGES C) add_library(curtle src/linear_algebra.c diff --git a/include/curtle/curtle.h b/include/curtle/curtle.h index e69de29..ec19e52 100644 --- a/include/curtle/curtle.h +++ b/include/curtle/curtle.h @@ -0,0 +1,6 @@ +#ifndef CURTLE_H +#define CURTLE_H + +#include "curtle/linear_algebra.h" + +#endif \ No newline at end of file