mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 18:46:18 +00:00
159 lines
4.3 KiB
YAML
159 lines
4.3 KiB
YAML
# SPDX-License-Identifier: CC0-1.0
|
|
# SPDX-FileCopyrightText: 2018-2020 Collabora, Ltd. and the Monado contributors
|
|
|
|
variables:
|
|
FDO_UPSTREAM_REPO: monado/monado
|
|
|
|
DEBIAN_TAG: 2019-04-27.0
|
|
DEBIAN_VERSION: buster
|
|
DEBIAN_CONTAINER_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
|
|
NDK_TAG: 2020-04-27.0
|
|
NDK_CONTAINER_IMAGE: "$CI_REGISTRY_IMAGE/debian/ndk:$NDK_TAG"
|
|
|
|
ARCH_TAG: 2019-12-03.0
|
|
ARCH_CONTAINER_IMAGE: "$CI_REGISTRY_IMAGE/archlinux/rolling:$ARCH_TAG"
|
|
|
|
.templates_sha: &templates_sha 322bf2b8f29b6491caeb13861201e96969ddc169
|
|
|
|
# Variables for build and usage of Debian 10 (Buster) image
|
|
.monado.debian:buster:
|
|
variables:
|
|
FDO_DISTRIBUTION_VERSION: buster
|
|
FDO_DISTRIBUTION_TAG: "2019-04-28.0"
|
|
|
|
# Variables for build and usage of Arch Linux image
|
|
.monado.arch:rolling:
|
|
variables:
|
|
FDO_DISTRIBUTION_TAG: "2019-04-28.0"
|
|
|
|
include:
|
|
- project: "freedesktop/ci-templates"
|
|
ref: *templates_sha
|
|
file: "/templates/debian.yml"
|
|
- project: "freedesktop/ci-templates"
|
|
ref: *templates_sha
|
|
file: "/templates/arch.yml"
|
|
|
|
stages:
|
|
- container_prep
|
|
- build
|
|
- pages
|
|
- deploy
|
|
|
|
###
|
|
# Container prep jobs
|
|
|
|
# Base for all container prep
|
|
.monado.container_base:
|
|
# "stage" set here doesn't work, for some reason
|
|
variables:
|
|
# no need to pull the whole tree for rebuilding the image - is this still needed?
|
|
GIT_STRATEGY: none
|
|
# Each most-derived job has a script to set up stuff for it.
|
|
FDO_DISTRIBUTION_EXEC: "bash .gitlab-ci/${CI_JOB_NAME}.sh"
|
|
|
|
# Debian Buster (x64)
|
|
debian:container_prep:
|
|
stage: container_prep
|
|
extends:
|
|
- .monado.debian:buster # local
|
|
- .monado.container_base # local
|
|
- .fdo.container-build@debian # from ci-templates
|
|
variables:
|
|
# a list of packages to install
|
|
FDO_DISTRIBUTION_PACKAGES: "build-essential git wget unzip cmake meson ninja-build doxygen graphviz libeigen3-dev curl patch python3 pkg-config libx11-dev libxxf86vm-dev libxrandr-dev libxcb-randr0-dev libhidapi-dev libwayland-dev libvulkan-dev glslang-dev glslang-tools libglvnd-dev libgl1-mesa-dev ca-certificates libusb-1.0-0-dev libuvc-dev libavcodec-dev libopencv-dev libudev-dev clang-format-7 codespell libv4l-dev libegl1-mesa-dev python3-pip python3-click"
|
|
|
|
# Arch Linux (x64)
|
|
arch:container_prep:
|
|
stage: container_prep
|
|
extends:
|
|
- .monado.arch:rolling # local
|
|
- .monado.container_base # local
|
|
- .fdo.container-build@arch # from ci-templates
|
|
variables:
|
|
# a list of packages to install
|
|
FDO_DISTRIBUTION_PACKAGES: "git gcc cmake meson ninja pkgconfig python3 diffutils patch doxygen graphviz eigen hidapi libxrandr mesa glslang vulkan-headers vulkan-icd-loader check glfw-x11 libusb opencv gtk3 ffmpeg v4l-utils qt5-base"
|
|
|
|
format-and-spellcheck:
|
|
extends:
|
|
- .monado.debian:buster # local
|
|
- .fdo.distribution-image@debian # from ci-templates
|
|
stage: build
|
|
script:
|
|
- scripts/format-and-spellcheck.sh
|
|
artifacts:
|
|
paths:
|
|
- patches/
|
|
expire_in: 1 week
|
|
when: on_failure
|
|
|
|
# "Base" job for a CMake build
|
|
.monado.build-cmake:
|
|
stage: build
|
|
script:
|
|
- mkdir build
|
|
- pushd build
|
|
- cmake -GNinja .. $CMAKE_ARGS
|
|
- ninja
|
|
|
|
# "Base" job for a Meson build
|
|
.monado.build-meson:
|
|
stage: build
|
|
script:
|
|
- mkdir build
|
|
- pushd build
|
|
- meson .. $MESON_ARGS
|
|
- ninja
|
|
|
|
debian:cmake:
|
|
extends:
|
|
- .monado.debian:buster # local
|
|
- .fdo.distribution-image@debian # from ci-templates
|
|
- .monado.build-cmake # local
|
|
before_script:
|
|
# Generate "changes since last release" and add to changelog,
|
|
# since this is the build that makes our docs.
|
|
- pip3 install proclamation
|
|
- pushd doc/changes
|
|
- proclamation build --overwrite vNEXT
|
|
- popd
|
|
artifacts:
|
|
paths:
|
|
- build/doc/html/
|
|
|
|
arch:cmake:
|
|
extends:
|
|
- .monado.arch:rolling # local
|
|
- .fdo.distribution-image@arch # from ci-templates
|
|
- .monado.build-cmake # local
|
|
|
|
debian:meson:
|
|
extends:
|
|
- .monado.debian:buster # local
|
|
- .fdo.distribution-image@debian # from ci-templates
|
|
- .monado.build-meson # local
|
|
|
|
arch:meson:
|
|
extends:
|
|
- .monado.arch:rolling # local
|
|
- .fdo.distribution-image@arch # from ci-templates
|
|
- .monado.build-meson # local
|
|
variables:
|
|
MESON_ARGS: -Ddocs=disabled
|
|
|
|
###
|
|
# Pages
|
|
###
|
|
pages:
|
|
stage: pages
|
|
only:
|
|
- master
|
|
dependencies:
|
|
- debian:cmake
|
|
script:
|
|
- mkdir -p public
|
|
- mv build/doc/html/* public/
|
|
artifacts:
|
|
paths:
|
|
- public
|