Files
libmegapixels/.gitlab-ci.yml
2023-12-03 14:30:46 +01:00

33 lines
658 B
YAML

build:
stage: test
image: alpine:edge
before_script:
- apk add --no-cache build-base meson samurai linux-headers libconfig-dev scdoc
script:
- meson build --buildtype release --werror
- ninja -C build
- cd build && meson test --no-rebuild
docs:
stage: test
image: alpine:edge
before_script:
- apk add --no-cache python3 py3-sphinx make
script:
- cd docs
- make html
pages:
stage: deploy
image: alpine:edge
before_script:
- apk add --no-cache python3 py3-sphinx make
script:
- cd docs
- make html
- mv _build/html ../public
artifacts:
paths:
- public
environment: production