diff options
author | Jesse Natalie <jenatali@microsoft.com> | 2023-01-26 13:52:08 -0800 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2023-01-27 01:49:19 +0000 |
commit | 1a29f3dfdb247d7f6a8bb6b3d559db497230f09d (patch) | |
tree | fa175184831b68f563d31c8414793cc022d66863 | |
parent | 1c5a64296d5b4fdec34ccb35098601e1896ee1a2 (diff) | |
download | mesa-1a29f3dfdb247d7f6a8bb6b3d559db497230f09d.tar.gz mesa-1a29f3dfdb247d7f6a8bb6b3d559db497230f09d.tar.bz2 mesa-1a29f3dfdb247d7f6a8bb6b3d559db497230f09d.zip |
CI/windows: Apply CI_FDO_CONCURRENT to piglit too
Reviewed-by: Daniel Stone <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20924>
-rw-r--r-- | .gitlab-ci/windows/piglit_run.ps1 | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.gitlab-ci/windows/piglit_run.ps1 b/.gitlab-ci/windows/piglit_run.ps1 index f824e16505e..84eac45a449 100644 --- a/.gitlab-ci/windows/piglit_run.ps1 +++ b/.gitlab-ci/windows/piglit_run.ps1 @@ -4,10 +4,16 @@ Copy-Item -Path _install\bin\opengl32.dll -Destination C:\Piglit\bin\opengl32.dl Copy-Item -Path _install\bin\libgallium_wgl.dll -Destination C:\Piglit\bin\libgallium_wgl.dll Copy-Item -Path _install\bin\libglapi.dll -Destination C:\Piglit\bin\libglapi.dll +$jobs = "" +if ($null -ne $env:FDO_CI_CONCURRENT) { + $jobs = "--jobs", "$($env:FDO_CI_CONCURRENT)" +} + deqp-runner suite --output .\logs --suite "_install/$env:PIGLIT_SUITE" ` --skips "_install/$env:PIGLIT_SKIPS" ` --baseline "_install/$env:PIGLIT_BASELINE" ` - --flakes "_install/$env:PIGLIT_FLAKES" + --flakes "_install/$env:PIGLIT_FLAKES" ` + $jobs if (!$?) { Exit 1 } |