From 9e1bbc02ba2bc7d430c81b15ac648a2a475f8fb4 Mon Sep 17 00:00:00 2001 From: Skittles Date: Sat, 2 May 2026 10:25:55 -0700 Subject: [PATCH] Attempt build CI --- .gitea/workflows/build.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 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..78f4905 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,21 @@ +name: Build CI + +on: push +jobs: + build_and_test: + name: "Build" + strategy: + matrix: + os: [ubuntu-latest] + runs-on: ${{ matrix.os }} + steps: + - name: Install Qt + uses: jurplel/install-qt-action@v4 + with: + version: '6.10.2' + - uses: actions/checkout@v6 + + - name: Build + # We don't need to set up the environment variable for CMake to see Qt because the install-qt-action + # sets up the necessary variables automatically + run: cmake --preset release && cmake --build --preset release \ No newline at end of file