mesa/src/gallium/drivers/llvmpipe/ci/gitlab-ci-inc.yml
Eric Engestrom 90a77f55de ci: drop containers, builds, and tests from post-merge pipeline
All these jobs are redundant and a waste of resources:
- the containers have already been built & pushed in the merge pipeline
- the mesa build variants have already all passed
- the driver tests have already all passed

None of these jobs are doing anything useful in this pipeline, but it
costs a factor of 2x to our infrastructure, so let's remove them.

In other words, the only job left in the post-merge pipeline is the
`pages` job that deploys the update to the website.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26451>
2023-12-06 08:26:04 +00:00

73 lines
1.6 KiB
YAML

.llvmpipe-rules:
stage: software-renderer
rules:
- !reference [.test, rules]
- if: $FORCE_KERNEL_TAG != null
when: never
- !reference [.gl-rules, rules]
- changes: &llvmpipe_file_list
- src/gallium/drivers/llvmpipe/**/*
- src/gallium/winsys/sw/**/*
when: on_success
.llvmpipe-manual-rules:
stage: software-renderer
rules:
- !reference [.test, rules]
- !reference [.gl-manual-rules, rules]
- changes: *llvmpipe_file_list
when: manual
.llvmpipe-cl-rules:
stage: software-renderer
rules:
- !reference [.test, rules]
- !reference [.no_scheduled_pipelines-rules, rules]
- changes: &llvmpipe_cl_files
- .gitlab-ci.yml
- .gitlab-ci/**/*
- meson.build
- .gitattributes
- include/**/*
- src/compiler/**/*
- src/util/**/*
when: on_success
- !reference [.gallium-core-rules, rules]
- changes:
*llvmpipe_file_list
when: on_success
.llvmpipe-rusticl-rules:
rules:
- !reference [.test, rules]
- !reference [.llvmpipe-cl-rules, rules]
- changes:
- src/gallium/frontends/rusticl/**/*
when: on_success
.llvmpipe-test:
extends:
- .llvmpipe-rules
variables:
LIBGL_ALWAYS_SOFTWARE: "true"
GALLIUM_DRIVER: "llvmpipe"
FLAKES_CHANNEL: "#mesa-swrast-ci"
GPU_VERSION: llvmpipe
.llvmpipe-piglit-cl:
extends:
- .test-cl
- .deqp-test
- .llvmpipe-test
variables:
LP_NUM_THREADS: 1
PIGLIT_PROFILES: cl
.llvmpipe-deqp-test:
variables:
GALLIVM_PERF: "nopt"
extends:
- .test-gl
- .deqp-test
- .llvmpipe-test