From 620c1133aef46adca1a87b33694c7314520ea563 Mon Sep 17 00:00:00 2001 From: retoor Date: Fri, 22 Nov 2024 16:27:37 +0100 Subject: [PATCH] Add build configuration --- .gitea/workflows/build.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..38b6bde --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,22 @@ +name: SORM build +run-name: Build 🚀 +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Update apt repository + - run: apt update + - name: Installing dependencies + - run: apt get install build-essential sqlite3 libsqlite3-dev libreadline-dev libpython3-dev make -y + - name: Check out repository code + uses: actions/checkout@v4 + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - name: Build project (misses rlib.h) + - run: make build + - run: echo "This job's status is ${{ job.status }}." + - name: ${{ job.status }} + - run: echo "Done"