Reviewed-by: Jesse Natalie <jenatali@microsoft.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37581>
62 lines
1.4 KiB
YAML
62 lines
1.4 KiB
YAML
include:
|
|
- local: 'src/microsoft/ci/gitlab-ci-inc.yml'
|
|
|
|
test-spirv2dxil-windows:
|
|
extends:
|
|
- .use-windows_test_msvc
|
|
- .spirv2dxil-test-rules
|
|
stage: layered-backends
|
|
timeout: 15m
|
|
dependencies:
|
|
- windows-msvc
|
|
needs:
|
|
- job: windows-msvc
|
|
- job: windows_test_msvc
|
|
optional: true
|
|
- !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: "${CI_PROJECT_NAME}_${CI_JOB_NAME_SLUG}"
|
|
paths:
|
|
- spirv2dxil_results.txt
|
|
|
|
test-dozen-deqp:
|
|
extends:
|
|
- .use-windows_test_msvc
|
|
- .dozen-test-rules
|
|
stage: layered-backends
|
|
timeout: 15m
|
|
dependencies:
|
|
- windows-msvc
|
|
needs:
|
|
- job: windows-msvc
|
|
- job: windows_test_msvc
|
|
optional: true
|
|
- !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: 618
|
|
DEQP_FRACTION: 4
|
|
script:
|
|
- . _install/deqp_runner_run.ps1
|
|
artifacts:
|
|
when: on_failure
|
|
name: "${CI_PROJECT_NAME}_${CI_JOB_NAME_SLUG}"
|
|
paths:
|
|
- results/
|
|
reports:
|
|
junit: results/junit.xml
|
|
|
|
test-dozen-deqp-full:
|
|
extends:
|
|
- test-dozen-deqp
|
|
- .dozen-manual-rules
|
|
timeout: 1h
|
|
variables:
|
|
DEQP_FRACTION: 1
|