mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-12-15 08:03:30 -08:00
ci: Execute DXC tests on 32-bit as well.
This commit is contained in:
committed by
Henri Verbeet
parent
92f22edb88
commit
d6d1485e40
Notes:
Henri Verbeet
2025-11-03 18:01:36 +01:00
Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1810
@@ -154,6 +154,12 @@ static bool run_tests_for_directory(const char *commit_dir)
|
||||
fprintf(stderr, "Cannot copy d3d10warp.dll, last error %ld.\n", GetLastError());
|
||||
ret = false;
|
||||
}
|
||||
sprintf(dest_filename, "artifacts\\%s\\tests\\dxcompiler.dll", commit_dir);
|
||||
if (!CopyFileA(".\\dxc\\bin\\x64\\dxcompiler.dll", dest_filename, FALSE))
|
||||
{
|
||||
fprintf(stderr, "Cannot copy dxcompiler.dll, last error %ld.\n", GetLastError());
|
||||
ret = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -163,6 +169,12 @@ static bool run_tests_for_directory(const char *commit_dir)
|
||||
fprintf(stderr, "Cannot copy d3d10warp.dll, last error %ld.\n", GetLastError());
|
||||
ret = false;
|
||||
}
|
||||
sprintf(dest_filename, "artifacts\\%s\\tests\\dxcompiler.dll", commit_dir);
|
||||
if (!CopyFileA(".\\dxc\\bin\\x86\\dxcompiler.dll", dest_filename, FALSE))
|
||||
{
|
||||
fprintf(stderr, "Cannot copy dxcompiler.dll, last error %ld.\n", GetLastError());
|
||||
ret = false;
|
||||
}
|
||||
}
|
||||
|
||||
sprintf(list_filename, "artifacts/%s/tests/shader_tests.txt", commit_dir);
|
||||
|
||||
Reference in New Issue
Block a user