summaryrefslogtreecommitdiff
path: root/.gitea/workflows/build.yaml
blob: a61bd060f87ad867416c1d967df598192ad4f2e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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