diff options
Diffstat (limited to '.gitea/workflows/build.yaml')
| -rw-r--r-- | .gitea/workflows/build.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..a61bd06 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,23 @@ +name: Build + +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 pkgconf glibmm-dev dbus-dev + - uses: actions/checkout@v4 + - name: Build + run: | + cmake -B build + make -C build |
