mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-02 10:48:06 +02:00
The code that looked at CAIRO_TEST_NUM_THREADS was removed seven years
ago in commit 6ef9779a6f, because it was dead code. I have not
managed to figure out how long exactly this code was dead already.
This commit removes the last traces of NUM_THREADS.
Signed-off-by: Uli Schlachter <psychon@znc.in>
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
# -*- indent-tabs-mode: nil -*-
|
|
|
|
variables:
|
|
# Docker images for various distros and architectures
|
|
|
|
AMD64_FEDORA_LATEST: "registry.gitlab.gnome.org/gnome/librsvg-oci-images/amd64/fedora:latest"
|
|
AMD64_OPENSUSE_TUMBLEWEED: "registry.gitlab.gnome.org/gnome/librsvg-oci-images/amd64/opensuse:tumbleweed"
|
|
AMD64_DEBIAN_TESTING: "registry.gitlab.gnome.org/gnome/librsvg-oci-images/amd64/debian:testing"
|
|
|
|
I386_DEBIAN_TESTING: "registry.gitlab.gnome.org/gnome/librsvg-oci-images/i386/debian:testing"
|
|
|
|
stages:
|
|
- test
|
|
|
|
.test_template: &distro_test
|
|
before_script:
|
|
# CCache Config
|
|
- mkdir -p ccache
|
|
- export CCACHE_BASEDIR=${PWD}
|
|
- export CCACHE_DIR=${PWD}/ccache
|
|
- export CC="ccache gcc"
|
|
|
|
script:
|
|
- ./autogen.sh
|
|
- make check TARGETS=image VERBOSE=1
|
|
|
|
artifacts:
|
|
when: on_failure
|
|
paths:
|
|
- test/*.log
|
|
- test/pdiff/*.log
|
|
- test/output
|
|
|
|
cache:
|
|
# Each job will have it's own cache
|
|
key: "$CI_JOB_NAME"
|
|
paths:
|
|
- ccache/
|
|
|
|
# TEST STAGE
|
|
########################################################################
|
|
|
|
fedora:test:
|
|
image: $AMD64_FEDORA_LATEST
|
|
stage: test
|
|
<<: *distro_test
|