From dd8bb919316234a7207d62a6a9adb80732399e95 Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Wed, 8 Apr 2026 12:49:39 +0200 Subject: [PATCH] Add gitea process --- .gitea/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..2567ca3 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,22 @@ +name: Build Packages + +on: + push: + branches: + - '**' + tags: + - '**' + +jobs: + build-library: + name: Build + runs-on: durin + steps: + - uses: actions/checkout@v4 + - name: Build library + shell: bash + run: | + mkdir -p build + cd build + cmake -DCMAKE_BUILD_TYPE=Release .. + make -j \ No newline at end of file