drm/.gitlab-ci.yml

110 lines
2.8 KiB
YAML
Raw Normal View History

# This is the tag of the docker image used for the build jobs. If the
# image doesn't exist yet, the containers stage generates it.
#
# In order to generate a new image, one should generally change the tag.
# While removing the image from the registry would also work, that's not
# recommended except for ephemeral images during development: Replacing
# an image after a significant amount of time might pull in newer
# versions of gcc/clang or other packages, which might break the build
# with older commits using the same tag.
#
# After merging a change resulting in generating a new image to the
# main repository, it's recommended to remove the image from the source
# repository's container registry, so that the image from the main
# repository's registry will be used there as well.
variables:
UPSTREAM_REPO: mesa/drm
DEBIAN_TAG: "2019-10-20"
DEBIAN_VERSION: buster-slim
DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
ARCH_TAG: "2019-10-20"
ARCH_VERSION: rolling
ARCH_IMAGE: "$CI_REGISTRY_IMAGE/archlinux/$ARCH_VERSION:$ARCH_TAG"
include:
- project: 'wayland/ci-templates'
ref: 1f7f57c64ff4ebbf7292e3b7a13600518b8cb24c
file: '/templates/debian.yml'
- project: 'wayland/ci-templates'
ref: 1f7f57c64ff4ebbf7292e3b7a13600518b8cb24c
file: '/templates/arch.yml'
stages:
- containers
- build
# When & how to run the CI
.ci-run-policy:
retry:
max: 2
when:
- runner_system_failure
# CONTAINERS
debian:
stage: containers
extends:
- .ci-run-policy
- .debian@container-ifnot-exists
variables:
GIT_STRATEGY: none # no need to pull the whole tree for rebuilding the image
DEBIAN_EXEC: 'bash .gitlab-ci/debian-install.sh'
arch:
stage: containers
extends:
- .ci-run-policy
- .arch@container-ifnot-exists
variables:
GIT_STRATEGY: none # no need to pull the whole tree for rebuilding the image
ARCH_EXEC: 'bash .gitlab-ci/arch-install.sh'
# BUILD
.meson-build:
stage: build
extends: .ci-run-policy
variables:
GIT_DEPTH: 10
script:
- meson _build
-D amdgpu=true
-D cairo-tests=true
-D etnaviv=true
-D exynos=true
-D freedreno=true
-D freedreno-kgsl=true
-D intel=true
-D libkms=true
-D man-pages=true
-D nouveau=true
-D omap=true
-D radeon=true
-D tegra=true
-D udev=true
-D valgrind=true
-D vc4=true
-D vmwgfx=true
- ninja -C _build
- ninja -C _build test
- DESTDIR=$PWD/install ninja -C _build install
artifacts:
when: on_failure
paths:
- _build/meson-logs/*
meson-debian:
extends: .meson-build
image: $DEBIAN_IMAGE
needs:
- debian
meson-arch:
extends: .meson-build
image: $ARCH_IMAGE
needs:
- arch