Files
ptouch-prnt/.gitea/workflows/build.yaml
Moritz Martinius eef42b1368
All checks were successful
Build ptprnt / build (push) Successful in 53s
Ubuntu package names are weird...
2023-09-25 18:58:30 +02:00

21 lines
658 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: Update package cache
run: apt-get update
- name: install meson
run: apt-get -yq install meson
- name: Install build dependencies
run: apt-get -yq install libusb-1.0-0-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