summaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yaml
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-05-27 23:19:07 +0200
committerEugen Wissner <belka@caraus.de>2026-05-27 23:19:07 +0200
commitb90c277798de0630488cb983ca13b00b282525ff (patch)
treec859a2292892166d624ce125dc706b07d850f086 /.gitea/workflows/test.yaml
parent76985de795f33f71684635ad5f14dc84aefea26e (diff)
downloadkatja-b90c277798de0630488cb983ca13b00b282525ff.tar.gz
Remove actions
Diffstat (limited to '.gitea/workflows/test.yaml')
-rw-r--r--.gitea/workflows/test.yaml27
1 files changed, 0 insertions, 27 deletions
diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml
deleted file mode 100644
index 15f31e4..0000000
--- a/.gitea/workflows/test.yaml
+++ /dev/null
@@ -1,27 +0,0 @@
-name: Test
-
-on:
- push:
- branches:
- - '**'
- pull_request:
- branches: [master]
-
-jobs:
- build:
- runs-on: alpine
- steps:
- - name: Set up environment
- shell: ash {0}
- run: |
- apk -U upgrade
- apk add --no-cache git bash cmake build-base ninja-is-really-ninja boost-dev toml11 \
- glib-dev bzip2-dev curl-dev
- - uses: actions/checkout@v4
- - name: Build
- run: |
- # Building the TUI fails with an internal compiler error with GCC 14.2.
- cmake -B build -G Ninja -DKATJA_BUILD_TUI=Off
- ninja -C build
- - name: Run tests
- run: ninja -C build test