mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 18:18:06 +02:00
make it easier to re-use the hidden jobs by other project (e.g. linux) without enabling the executable jobs. Signed-off-by: Helen Koike <helen.koike@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25238>
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
include:
|
|
- local: 'src/microsoft/ci/gitlab-ci-inc.yml'
|
|
|
|
test-spirv2dxil-windows:
|
|
extends:
|
|
- .use-windows_test_vs2019
|
|
- .spirv2dxil-test-rules
|
|
stage: layered-backends
|
|
dependencies:
|
|
- windows-vs2019
|
|
needs:
|
|
- windows-vs2019
|
|
- windows_test_vs2019
|
|
- !reference [.required-for-hardware-jobs, needs]
|
|
variables:
|
|
GIT_STRATEGY: none # testing doesn't build anything from source
|
|
script:
|
|
- . _install/spirv2dxil_run.ps1
|
|
artifacts:
|
|
when: on_failure
|
|
name: "mesa_${CI_JOB_NAME}"
|
|
paths:
|
|
- spirv2dxil_results.txt
|
|
|
|
test-dozen-deqp:
|
|
extends:
|
|
- .use-windows_test_vs2019
|
|
- .dozen-test-rules
|
|
stage: layered-backends
|
|
dependencies:
|
|
- windows-vs2019
|
|
needs:
|
|
- windows-vs2019
|
|
- windows_test_vs2019
|
|
- !reference [.required-for-hardware-jobs, needs]
|
|
variables:
|
|
GIT_STRATEGY: none # testing doesn't build anything from source
|
|
DZN_AGILITY_RELATIVE_PATH: "D3D12\\"
|
|
DZN_AGILITY_SDK_VERSION: 610
|
|
DEQP_FRACTION: 4
|
|
script:
|
|
- . _install/deqp_runner_run.ps1
|
|
artifacts:
|
|
when: on_failure
|
|
name: "mesa_${CI_JOB_NAME}"
|
|
paths:
|
|
- results/
|
|
reports:
|
|
junit: results/junit.xml
|