2019-01-20 19:21:45 +08:00
|
|
|
# This is the tag of the docker image used for the build jobs. If the
|
|
|
|
# image doesn't exist yet, the containers-build 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.
|
|
|
|
#
|
|
|
|
# The format of the tag is "%Y-%m-%d-${counter}" where ${counter} stays
|
|
|
|
# at "01" unless you have multiple updates on the same day :)
|
|
|
|
variables:
|
2019-04-02 15:24:00 +08:00
|
|
|
UPSTREAM_REPO: mesa/mesa
|
2019-04-02 22:56:54 +08:00
|
|
|
DEBIAN_TAG: "2019-04-16"
|
|
|
|
DEBIAN_VERSION: stretch-slim
|
|
|
|
DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
|
2019-04-02 15:24:00 +08:00
|
|
|
|
|
|
|
include:
|
|
|
|
- project: 'wayland/ci-templates'
|
|
|
|
ref: c73dae8b84697ef18e2dbbf4fed7386d9652b0cd
|
2019-04-02 22:56:54 +08:00
|
|
|
file: '/templates/debian.yml'
|
2019-01-20 19:21:45 +08:00
|
|
|
|
|
|
|
stages:
|
|
|
|
- containers-build
|
2019-01-20 19:26:53 +08:00
|
|
|
- build+test
|
2019-01-20 19:21:45 +08:00
|
|
|
|
|
|
|
|
2019-02-22 23:52:08 +08:00
|
|
|
# When to automatically run the CI
|
2019-04-02 15:24:00 +08:00
|
|
|
.ci-run-policy: &ci-run-policy
|
2019-02-22 23:52:08 +08:00
|
|
|
only:
|
2019-04-10 16:33:13 +08:00
|
|
|
- branches@mesa/mesa
|
2019-02-22 23:52:08 +08:00
|
|
|
- merge_requests
|
|
|
|
- /^ci([-/].*)?$/
|
2019-03-27 01:39:41 +08:00
|
|
|
retry:
|
|
|
|
max: 2
|
|
|
|
when:
|
|
|
|
- runner_system_failure
|
2019-02-22 23:52:08 +08:00
|
|
|
|
|
|
|
|
2019-01-20 19:21:45 +08:00
|
|
|
# CONTAINERS
|
|
|
|
|
2019-04-02 22:56:54 +08:00
|
|
|
debian:
|
|
|
|
extends: .debian@container-ifnot-exists
|
2019-01-20 19:21:45 +08:00
|
|
|
stage: containers-build
|
2019-04-02 15:24:00 +08:00
|
|
|
<<: *ci-run-policy
|
2019-01-20 19:21:45 +08:00
|
|
|
variables:
|
2019-04-02 15:24:00 +08:00
|
|
|
GIT_STRATEGY: none # no need to pull the whole tree for rebuilding the image
|
2019-04-02 22:56:54 +08:00
|
|
|
DEBIAN_EXEC: 'bash .gitlab-ci/debian-install.sh'
|
2019-01-20 19:26:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
# BUILD
|
|
|
|
|
|
|
|
.build:
|
2019-04-02 15:24:00 +08:00
|
|
|
<<: *ci-run-policy
|
2019-04-02 22:56:54 +08:00
|
|
|
image: $DEBIAN_IMAGE
|
2019-01-20 19:26:53 +08:00
|
|
|
stage: build+test
|
2019-03-27 01:35:59 +08:00
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- ccache
|
2019-01-20 19:26:53 +08:00
|
|
|
artifacts:
|
|
|
|
when: on_failure
|
|
|
|
untracked: true
|
2019-02-13 00:59:27 +08:00
|
|
|
# Use ccache transparently, and print stats before/after
|
|
|
|
before_script:
|
|
|
|
- export PATH="/usr/lib/ccache:$PATH"
|
|
|
|
- export CCACHE_BASEDIR="$PWD"
|
|
|
|
- export CCACHE_DIR="$PWD/ccache"
|
|
|
|
- export CCACHE_COMPILERCHECK=content
|
|
|
|
- ccache --zero-stats || true
|
|
|
|
- ccache --show-stats || true
|
|
|
|
after_script:
|
|
|
|
- export CCACHE_DIR="$PWD/ccache"
|
|
|
|
- ccache --show-stats
|
2019-01-20 19:26:53 +08:00
|
|
|
|
|
|
|
.meson-build:
|
|
|
|
extends: .build
|
2019-02-13 00:59:27 +08:00
|
|
|
script:
|
2019-01-20 19:26:53 +08:00
|
|
|
# We need to control the version of llvm-config we're using, so we'll
|
|
|
|
# generate a native file to do so. This requires meson >=0.49
|
|
|
|
- if test -n "$LLVM_VERSION"; then
|
|
|
|
LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
|
|
|
|
echo -e "[binaries]\nllvm-config = '`which $LLVM_CONFIG`'" > native.file;
|
|
|
|
$LLVM_CONFIG --version;
|
|
|
|
else
|
|
|
|
touch native.file;
|
|
|
|
fi
|
|
|
|
- meson --version
|
|
|
|
- meson _build
|
|
|
|
--native-file=native.file
|
|
|
|
-D build-tests=true
|
|
|
|
-D libunwind=${UNWIND}
|
|
|
|
${DRI_LOADERS}
|
|
|
|
-D dri-drivers=${DRI_DRIVERS:-[]}
|
|
|
|
${GALLIUM_ST}
|
|
|
|
-D gallium-drivers=${GALLIUM_DRIVERS:-[]}
|
|
|
|
-D vulkan-drivers=${VULKAN_DRIVERS:-[]}
|
2019-03-13 07:15:09 +08:00
|
|
|
-D I-love-half-baked-turnips=true
|
2019-01-20 19:26:53 +08:00
|
|
|
- cd _build
|
|
|
|
- meson configure
|
2019-02-13 22:25:45 +08:00
|
|
|
- ninja -j4
|
2019-01-20 19:26:53 +08:00
|
|
|
- ninja test
|
|
|
|
|
2019-01-23 23:46:10 +08:00
|
|
|
.scons-build:
|
|
|
|
extends: .build
|
|
|
|
variables:
|
|
|
|
SCONSFLAGS: "-j4"
|
|
|
|
script:
|
2019-01-29 00:30:36 +08:00
|
|
|
- if test -n "$LLVM_VERSION"; then
|
|
|
|
export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
|
|
|
|
fi
|
2019-01-23 23:46:10 +08:00
|
|
|
- scons $SCONS_TARGET
|
|
|
|
- eval $SCONS_CHECK_COMMAND
|
|
|
|
|
2019-03-20 22:58:31 +08:00
|
|
|
# NOTE: Building SWR is 2x (yes two) times slower than all the other
|
|
|
|
# gallium drivers combined.
|
|
|
|
# Start this early so that it doesn't limit the total run time.
|
|
|
|
meson-gallium-swr:
|
|
|
|
extends: .meson-build
|
|
|
|
variables:
|
|
|
|
UNWIND: "true"
|
|
|
|
DRI_LOADERS: >
|
|
|
|
-D glx=disabled
|
|
|
|
-D egl=false
|
|
|
|
-D gbm=false
|
|
|
|
GALLIUM_ST: >
|
|
|
|
-D dri3=false
|
|
|
|
-D gallium-vdpau=false
|
|
|
|
-D gallium-xvmc=false
|
|
|
|
-D gallium-omx=disabled
|
|
|
|
-D gallium-va=false
|
|
|
|
-D gallium-xa=false
|
|
|
|
-D gallium-nine=false
|
|
|
|
-D gallium-opencl=disabled
|
|
|
|
GALLIUM_DRIVERS: "swr"
|
|
|
|
LLVM_VERSION: "6.0"
|
|
|
|
|
|
|
|
meson-clang:
|
|
|
|
extends: .meson-build
|
|
|
|
variables:
|
|
|
|
UNWIND: "true"
|
|
|
|
DRI_DRIVERS: "auto"
|
|
|
|
GALLIUM_DRIVERS: "auto"
|
2019-03-26 17:04:27 +08:00
|
|
|
CC: "ccache clang-7"
|
|
|
|
CXX: "ccache clang++-7"
|
2019-03-20 22:58:31 +08:00
|
|
|
|
2019-02-26 22:40:29 +08:00
|
|
|
meson-vulkan:
|
2019-01-20 19:26:53 +08:00
|
|
|
extends: .meson-build
|
|
|
|
variables:
|
|
|
|
UNWIND: "false"
|
|
|
|
DRI_LOADERS: >
|
|
|
|
-D glx=disabled
|
|
|
|
-D gbm=false
|
|
|
|
-D egl=false
|
|
|
|
-D platforms=x11,wayland,drm
|
|
|
|
-D osmesa=none
|
|
|
|
GALLIUM_ST: >
|
|
|
|
-D dri3=true
|
|
|
|
-D gallium-vdpau=false
|
|
|
|
-D gallium-xvmc=false
|
|
|
|
-D gallium-omx=disabled
|
|
|
|
-D gallium-va=false
|
|
|
|
-D gallium-xa=false
|
|
|
|
-D gallium-nine=false
|
|
|
|
-D gallium-opencl=disabled
|
2019-03-13 07:15:09 +08:00
|
|
|
VULKAN_DRIVERS: intel,amd,freedreno
|
2019-01-20 19:26:53 +08:00
|
|
|
LLVM_VERSION: "7"
|
2019-01-21 17:42:37 +08:00
|
|
|
|
2019-02-26 22:40:29 +08:00
|
|
|
meson-loader-classic-dri:
|
2019-01-29 01:38:17 +08:00
|
|
|
extends: .meson-build
|
|
|
|
variables:
|
|
|
|
UNWIND: "false"
|
|
|
|
DRI_LOADERS: >
|
|
|
|
-D glx=dri
|
|
|
|
-D gbm=true
|
|
|
|
-D egl=true
|
|
|
|
-D platforms=x11,wayland,drm,surfaceless
|
|
|
|
-D osmesa=classic
|
|
|
|
DRI_DRIVERS: "i915,i965,r100,r200,swrast,nouveau"
|
|
|
|
GALLIUM_ST: >
|
|
|
|
-D dri3=true
|
|
|
|
-D gallium-vdpau=false
|
|
|
|
-D gallium-xvmc=false
|
|
|
|
-D gallium-omx=disabled
|
|
|
|
-D gallium-va=false
|
|
|
|
-D gallium-xa=false
|
|
|
|
-D gallium-nine=false
|
|
|
|
-D gallium-opencl=disabled
|
|
|
|
|
2019-02-26 22:40:29 +08:00
|
|
|
meson-glvnd:
|
2019-01-29 16:57:17 +08:00
|
|
|
extends: .meson-build
|
|
|
|
variables:
|
|
|
|
UNWIND: "true"
|
|
|
|
DRI_LOADERS: >
|
|
|
|
-D glvnd=true
|
|
|
|
-D egl=true
|
|
|
|
-D gbm=true
|
|
|
|
-D glx=dri
|
|
|
|
DRI_DRIVERS: "i965"
|
|
|
|
GALLIUM_ST: >
|
|
|
|
-D gallium-vdpau=false
|
|
|
|
-D gallium-xvmc=false
|
|
|
|
-D gallium-omx=disabled
|
|
|
|
-D gallium-va=false
|
|
|
|
-D gallium-xa=false
|
|
|
|
-D gallium-nine=false
|
|
|
|
-D gallium-opencl=disabled
|
|
|
|
|
2019-02-26 22:40:29 +08:00
|
|
|
meson-gallium-radeonsi:
|
2019-01-29 01:45:26 +08:00
|
|
|
extends: .meson-build
|
|
|
|
variables:
|
|
|
|
UNWIND: "true"
|
|
|
|
DRI_LOADERS: >
|
|
|
|
-D glx=disabled
|
|
|
|
-D egl=false
|
|
|
|
-D gbm=false
|
|
|
|
GALLIUM_ST: >
|
|
|
|
-D dri3=false
|
|
|
|
-D gallium-vdpau=false
|
|
|
|
-D gallium-xvmc=false
|
|
|
|
-D gallium-omx=disabled
|
|
|
|
-D gallium-va=false
|
|
|
|
-D gallium-xa=false
|
|
|
|
-D gallium-nine=false
|
|
|
|
-D gallium-opencl=disabled
|
|
|
|
GALLIUM_DRIVERS: "radeonsi"
|
|
|
|
LLVM_VERSION: "7"
|
|
|
|
|
2019-02-26 22:40:29 +08:00
|
|
|
meson-gallium-drivers-other:
|
2019-01-29 01:47:09 +08:00
|
|
|
extends: .meson-build
|
|
|
|
variables:
|
|
|
|
UNWIND: "true"
|
|
|
|
DRI_LOADERS: >
|
|
|
|
-D glx=disabled
|
|
|
|
-D egl=false
|
|
|
|
-D gbm=false
|
|
|
|
GALLIUM_ST: >
|
|
|
|
-D dri3=false
|
|
|
|
-D gallium-vdpau=false
|
|
|
|
-D gallium-xvmc=false
|
|
|
|
-D gallium-omx=disabled
|
|
|
|
-D gallium-va=false
|
|
|
|
-D gallium-xa=false
|
|
|
|
-D gallium-nine=false
|
|
|
|
-D gallium-opencl=disabled
|
2019-04-12 22:52:00 +08:00
|
|
|
GALLIUM_DRIVERS: "i915,iris,nouveau,kmsro,r300,r600,freedreno,svga,swrast,v3d,vc4,virgl,etnaviv,panfrost,lima"
|
2019-01-29 01:47:09 +08:00
|
|
|
LLVM_VERSION: "5.0"
|
|
|
|
|
2019-03-07 01:59:03 +08:00
|
|
|
meson-gallium-clover-llvm:
|
2019-01-29 02:05:22 +08:00
|
|
|
extends: .meson-build
|
|
|
|
variables:
|
|
|
|
UNWIND: "true"
|
|
|
|
DRI_LOADERS: >
|
|
|
|
-D glx=disabled
|
|
|
|
-D egl=false
|
|
|
|
-D gbm=false
|
|
|
|
GALLIUM_ST: >
|
|
|
|
-D dri3=false
|
|
|
|
-D gallium-vdpau=false
|
|
|
|
-D gallium-xvmc=false
|
|
|
|
-D gallium-omx=disabled
|
|
|
|
-D gallium-va=false
|
|
|
|
-D gallium-xa=false
|
|
|
|
-D gallium-nine=false
|
|
|
|
-D gallium-opencl=icd
|
2019-03-07 01:59:03 +08:00
|
|
|
GALLIUM_DRIVERS: "r600,radeonsi"
|
2019-01-29 02:07:31 +08:00
|
|
|
|
2019-03-07 01:59:03 +08:00
|
|
|
meson-gallium-clover-llvm39:
|
|
|
|
extends: meson-gallium-clover-llvm
|
2019-01-29 02:09:24 +08:00
|
|
|
variables:
|
2019-03-07 01:59:03 +08:00
|
|
|
GALLIUM_DRIVERS: "r600"
|
|
|
|
LLVM_VERSION: "3.9"
|
2019-01-29 02:09:24 +08:00
|
|
|
|
2019-02-26 22:40:29 +08:00
|
|
|
meson-gallium-st-other:
|
2019-01-29 02:13:55 +08:00
|
|
|
extends: .meson-build
|
|
|
|
variables:
|
|
|
|
UNWIND: "true"
|
|
|
|
DRI_LOADERS: >
|
|
|
|
-D glx=disabled
|
|
|
|
-D egl=false
|
|
|
|
-D gbm=false
|
|
|
|
GALLIUM_ST: >
|
|
|
|
-D dri3=true
|
2019-03-19 22:23:59 +08:00
|
|
|
-D gallium-extra-hud=true
|
2019-01-29 02:13:55 +08:00
|
|
|
-D gallium-vdpau=true
|
|
|
|
-D gallium-xvmc=true
|
|
|
|
-D gallium-omx=bellagio
|
|
|
|
-D gallium-va=true
|
|
|
|
-D gallium-xa=true
|
|
|
|
-D gallium-nine=true
|
|
|
|
-D gallium-opencl=disabled
|
|
|
|
-D osmesa=gallium
|
|
|
|
GALLIUM_DRIVERS: "nouveau,swrast"
|
|
|
|
LLVM_VERSION: "5.0"
|
|
|
|
|
2019-02-26 22:40:29 +08:00
|
|
|
scons-nollvm:
|
2019-01-23 23:46:10 +08:00
|
|
|
extends: .scons-build
|
|
|
|
variables:
|
|
|
|
SCONS_TARGET: "llvm=0"
|
|
|
|
SCONS_CHECK_COMMAND: "scons llvm=0 check"
|
2019-01-29 00:30:36 +08:00
|
|
|
|
2019-02-26 22:40:29 +08:00
|
|
|
scons-llvm:
|
2019-01-29 00:30:36 +08:00
|
|
|
extends: .scons-build
|
|
|
|
variables:
|
|
|
|
SCONS_TARGET: "llvm=1"
|
|
|
|
SCONS_CHECK_COMMAND: "scons llvm=1 check"
|
|
|
|
LLVM_VERSION: "3.9"
|
2019-01-29 00:33:22 +08:00
|
|
|
|
2019-02-26 22:40:29 +08:00
|
|
|
scons-swr:
|
2019-01-29 00:33:22 +08:00
|
|
|
extends: .scons-build
|
|
|
|
variables:
|
|
|
|
SCONS_TARGET: "swr=1"
|
|
|
|
SCONS_CHECK_COMMAND: "true"
|
|
|
|
LLVM_VERSION: "6.0"
|