mesa/src/microsoft/ci/gitlab-ci.yml
Martin Roukala (né Peres) 729f1b1112 ci: fix the artifact name
This has probably no incidence on anything else but human-visible names
but let's fix it anyway.

Fixes: ef3091736c ("ci: use CI_PROJECT_NAME for artifacts name")
Signed-off-by: Martin Roukala (né Peres) <martin.roukala@mupuf.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32927>
(cherry picked from commit 978c0989eb)
2025-02-05 16:05:42 +01:00

56 lines
1.3 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
dependencies:
- windows-msvc
needs:
- windows-msvc
- windows_test_msvc
- !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}"
paths:
- spirv2dxil_results.txt
test-dozen-deqp:
extends:
- .use-windows_test_msvc
- .dozen-test-rules
stage: layered-backends
dependencies:
- windows-msvc
needs:
- windows-msvc
- windows_test_msvc
- !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: 614
DEQP_FRACTION: 4
script:
- . _install/deqp_runner_run.ps1
artifacts:
when: on_failure
name: "${CI_PROJECT_NAME}_${CI_JOB_NAME}"
paths:
- results/
reports:
junit: results/junit.xml
test-dozen-deqp-full:
extends:
- test-dozen-deqp
- .dozen-manual-rules
variables:
DEQP_FRACTION: 1