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

Bruce Cowan's avatar
Bruce Cowan committed
image: alpine:latest
Bruce Cowan's avatar
Bruce Cowan committed
stages:
  - build
Bruce Cowan's avatar
Bruce Cowan committed
  - test

before_script:
  - apk update && apk add build-base meson glib xxhash-dev
Bruce Cowan's avatar
Bruce Cowan committed

build:
  stage: build
  script:
  - meson builddir
Bruce Cowan's avatar
Bruce Cowan committed
  - ninja -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