Skip to content
Snippets Groups Projects

gitlab-ci: Build and install virtboard

Merged Guido Gunther requested to merge guido.gunther/virtboard:gitlab-ci into master
1 file
+ 18
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 18
0
variables:
DEPS: debhelper meson pkg-config libpixman-1-dev libpng-dev libxcb1-dev
libxcb-xkb-dev libxkbcommon-dev libcairo2-dev libwayland-dev
wayland-protocols
before_script:
- apt-get -y update
- apt-get -y install $DEPS
build-native:
stage: build
tags:
- librem5
script:
- export LC_ALL=C.UTF-8
- meson . _build
- ninja -C _build
- ninja -C _build install
Loading