Files
ptouch-prnt/.gitea/workflows/build.yaml
Moritz Martinius 4dc5a91892
Some checks failed
Build ptprnt / build (push) Failing after 6s
Attempt to setup gitea build action
2023-09-25 18:51:42 +02:00

19 lines
583 B
YAML

name: Build ptprnt
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo "Branch ${{ gitea.ref }} will be built for project ${{ gitea.repository }}."
- name: Checkout branch
uses: actions/checkout@v3
- name: install meson
run: sudo apt install meson
- name: Install build dependencies
run: sudo apt install libusb-dev libspdlog-dev libpango1.0-dev libcairo2-dev gcovr
- name: setup builddir
run: meson setup builddir -Db_coverage=true
- name: build all targets
run: ninja -C builddir