Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/gallium/drivers/softpipe/ci/gitlab-ci.yml
4574 views
1
softpipe-gles2:
2
extends:
3
- llvmpipe-gles2
4
- .softpipe-rules
5
variables:
6
GPU_VERSION: softpipe
7
GALLIUM_DRIVER: "softpipe"
8
DEQP_EXPECTED_RENDERER: softpipe
9
FLAKES_CHANNEL: "#mesa-swrast-ci"
10
11
softpipe-gles3:
12
variables:
13
DEQP_VER: gles3
14
extends: softpipe-gles2
15
16
softpipe-gles31:
17
parallel: 2
18
variables:
19
DEQP_VER: gles31
20
extends: softpipe-gles2
21
22
softpipe-khr-gles2:
23
variables:
24
DEQP_VER: gles2-khr
25
extends: softpipe-gles2
26
27
softpipe-khr-gles3:
28
variables:
29
DEQP_VER: gles3-khr
30
extends: softpipe-gles2
31
32
softpipe-khr-gles31:
33
variables:
34
DEQP_VER: gles31-khr
35
extends: softpipe-gles2
36
37
softpipe-asan-gles31:
38
variables:
39
GPU_VERSION: softpipe-asan
40
DEQP_FRACTION: 10
41
DEQP_VER: gles31
42
TEST_LD_PRELOAD: libasan.so.6
43
extends: softpipe-gles2
44
needs:
45
- debian/x86_test-gl
46
- debian-testing-asan
47
48
softpipe-piglit-quick:
49
extends:
50
- .test-gl
51
- .piglit-test
52
- .softpipe-rules
53
variables:
54
GALLIUM_DRIVER: softpipe
55
# rasterpos skipped until we uprev piglit (commit ff2a7650be7349)
56
# triangle-rasterization skipped due to flakes thanks to it using a time-based random seed.
57
# glx-multithread-texture is flaky, undiagnosed
58
PIGLIT_TESTS: >
59
-x rasterpos
60
-x triangle-rasterization
61
-x glx-multithread-texture
62
-x egl_ext_device_
63
-x egl_ext_platform_device
64
-x ext_timer_query@time-elapsed
65
-x glx-multithread-clearbuffer
66
-x glx-multithread-shader-compile
67
-x max-texture-size
68
-x maxsize
69
-x fs-execution-ordering
70
-x local-id-explosion
71
-x arb_pipeline_statistics_query-comp
72
-x streaming-texture-leak
73
-x longprim
74
-x shader-mem-barrier
75
-x arb_gpu_shader_fp64
76
-x arb_gpu_shader_int64
77
-x arb_tessellation_shader
78
-x glsl-4.00
79
-x glsl-4.10
80
-x glsl-4.20
81
-x glsl-4.30
82
-x glsl-4.40
83
-x glsl-4.50
84
-x gpu_shader4
85
-x gpu_shader5
86
-x glsl-uniform-interstage-limits
87
PIGLIT_PROFILES: quick_gl quick_shader
88
PIGLIT_RESULTS: softpipe-quick
89
90
# Note that KHR-GL3* test sets include all tests from the previous
91
# version, so we only need to run one test list (unlike dEQP-GLES,
92
# where the test sets are separate).
93
softpipe-gl:
94
variables:
95
DEQP_VER: gl33
96
extends:
97
- softpipe-gles2
98
99