From c70e31c4d5297b3210209dc351151aac95803442 Mon Sep 17 00:00:00 2001 From: Jesse Natalie Date: Sun, 21 Nov 2021 06:41:37 -0800 Subject: [PATCH] CI/windows: Move SPIRV-to-DXIL test YML to microsoft folder Reviewed-by: Enrico Galli Acked-by: Daniel Stone Part-of: --- .gitlab-ci.yml | 21 +-------------------- src/microsoft/ci/gitlab-ci.yml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 20 deletions(-) create mode 100644 src/microsoft/ci/gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 758d0e559e8..3fb60dc3c03 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -42,6 +42,7 @@ include: - local: 'src/gallium/drivers/virgl/ci/gitlab-ci.yml' - local: 'src/gallium/drivers/zink/ci/gitlab-ci.yml' - local: 'src/gallium/frontends/lavapipe/ci/gitlab-ci.yml' + - local: 'src/microsoft/ci/gitlab-ci.yml' - local: 'src/panfrost/ci/gitlab-ci.yml' stages: @@ -1033,26 +1034,6 @@ windows-vs2019: - _build/meson-logs/*.txt - _install/ -test-spirv2dxil-windows: - extends: - - .build-windows - - .use-windows_build_vs2019 - - .windows-test-rules - stage: layered-backends - dependencies: - - windows-vs2019 - needs: - - windows-vs2019 - 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 - debian-clover: extends: .meson-build variables: diff --git a/src/microsoft/ci/gitlab-ci.yml b/src/microsoft/ci/gitlab-ci.yml new file mode 100644 index 00000000000..c67037ca44d --- /dev/null +++ b/src/microsoft/ci/gitlab-ci.yml @@ -0,0 +1,19 @@ +test-spirv2dxil-windows: + extends: + - .build-windows + - .use-windows_build_vs2019 + - .windows-test-rules + stage: layered-backends + dependencies: + - windows-vs2019 + needs: + - windows-vs2019 + 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