Skip to content
Snippets Groups Projects
.gitlab-ci.yml 569 B
Newer Older
# SPDX-FileCopyrightText: 2018-2024 Bruce Cowan <bruce@bcowan.me.uk>
Bruce Cowan's avatar
Bruce Cowan committed
#
# SPDX-License-Identifier: CC0-1.0

image: registry.fedoraproject.org/fedora-minimal:latest
Bruce Cowan's avatar
Bruce Cowan committed
stages:
  - build
Bruce Cowan's avatar
Bruce Cowan committed
  - test

before_script:
  - microdnf -y update
  - microdnf -y install gcc meson "pkgconfig(glib-2.0)" "pkgconfig(libxxhash)"
Bruce Cowan's avatar
Bruce Cowan committed

build:
  stage: build
  script:
  - meson setup builddir
  - meson compile -C builddir
Bruce Cowan's avatar
Bruce Cowan committed
  artifacts:
    paths:
      - builddir
Bruce Cowan's avatar
Bruce Cowan committed

test:
  stage: test
  script:
Bruce Cowan's avatar
Bruce Cowan committed
  - meson test -C builddir --verbose
  artifacts:
    paths:
      - builddir/meson-logs/testlog.txt