Files
squeekboard/.gitlab-ci.yml
2019-07-22 20:35:18 +02:00

34 lines
449 B
YAML

image: debian:buster
stages:
- build
- test
.tags: &tags
tags:
- librem5
before_script:
- apt-get -y update
- apt-get -y build-dep .
build_meson:
<<: *tags
stage: build
artifacts:
paths:
- _build
script:
- meson . _build/ -Ddepdatadir=/usr/share
- ninja -C _build install
test:
<<: *tags
stage: test
dependencies:
- build_meson
script:
- export LC_ALL=C.UTF-8
- ninja -C _build test