From 38bc78caba25b6c2987979f8a42d2ed2bfd5fe5a Mon Sep 17 00:00:00 2001 From: Leo Sulzbacher Date: Sat, 14 Mar 2026 13:02:00 +0100 Subject: [PATCH 1/6] fix: repair pipeline and use curtle.h --- .gitea/workflows/ci.yml | 2 +- include/curtle/curtle.h | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d89e6d7..041fb64 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v3 - name: install deps - run: sudo apt install cmake + run: apt install cmake - name: build run: | 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 -- 2.49.1 From 1d8c91c0beb5a644d844a65c8eeadc1d87488eb9 Mon Sep 17 00:00:00 2001 From: Leo Sulzbacher Date: Sat, 14 Mar 2026 13:02:00 +0100 Subject: [PATCH 2/6] fix: repair pipeline and use curtle.h --- .gitea/workflows/ci.yml | 4 +++- include/curtle/curtle.h | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d89e6d7..b9f55ac 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 - name: build run: | 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 -- 2.49.1 From 06a91eb3eaef2d4bcdb728993732d0cb2e1b25c9 Mon Sep 17 00:00:00 2001 From: Leo Sulzbacher Date: Sat, 14 Mar 2026 13:07:45 +0100 Subject: [PATCH 3/6] fix --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b9f55ac..e071eca 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: install deps run: | apt update - apt install cmake + apt install cmake -Y - name: build run: | -- 2.49.1 From 52a7b138ffc3e62b1207267892cdf670bb0a89d4 Mon Sep 17 00:00:00 2001 From: Leo Sulzbacher Date: Sat, 14 Mar 2026 13:09:00 +0100 Subject: [PATCH 4/6] fix fml kill me pls --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e071eca..cd23a60 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: install deps run: | apt update - apt install cmake -Y + apt install cmake -y - name: build run: | -- 2.49.1 From 44be9cccb9688e713ebe28592eee2f7a67cef93d Mon Sep 17 00:00:00 2001 From: Leo Sulzbacher Date: Sat, 14 Mar 2026 13:10:49 +0100 Subject: [PATCH 5/6] fix cmake version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 58f442b..0937856 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 4.1) +cmake_minimum_required(VERSION 3.10) project(curtle VERSION 0.1.0 LANGUAGES C) add_library(curtle -- 2.49.1 From dec1462cf134b3eadd0d9a13aa212a249706b335 Mon Sep 17 00:00:00 2001 From: Leo Sulzbacher Date: Sat, 14 Mar 2026 13:43:11 +0100 Subject: [PATCH 6/6] bump version to 0.1.1 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0937856..b9f754f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(curtle VERSION 0.1.0 LANGUAGES C) +project(curtle VERSION 0.1.1 LANGUAGES C) add_library(curtle src/linear_algebra.c -- 2.49.1