Skip to content
Snippets Groups Projects
.gitlab-ci.yml 287 B
Newer Older
Bruce Cowan's avatar
Bruce Cowan committed
image: fedora:latest
stages:
  - build
Bruce Cowan's avatar
Bruce Cowan committed
  - test

before_script:
  - dnf install -y gcc meson ninja-build
Bruce Cowan's avatar
Bruce Cowan committed

build:
  stage: build
  script:
  - meson builddir
Bruce Cowan's avatar
Bruce Cowan committed
  - ninja -C builddir

test:
  stage: test
  script:
  - meson builddir
  - ninja -C builddir
  - meson test -C builddir --verbose