ci: Test DXIL shaders on macOS.
Merge request reports
Activity
Subject: [PATCH 2/4] ci: Parallelize building widl for the macOS image.
Do we really need to build widl at all? Couldn't we use MinGW widl? (i.e., x86_64-w64-mingw32-widl from the mingw-w64 brew package, and the mingw-w64-tools Debian package.)
- CPPFLAGS="-DVKD3D_ABORT_ON_ERR -DVKD3D_SHADER_UNSUPPORTED_MSL" \ + CPPFLAGS="-DVKD3D_ABORT_ON_ERR -DVKD3D_SHADER_UNSUPPORTED_DXIL -DVKD3D_SHADER_UNSUPPORTED_GLSL -DVKD3D_SHADER_UNSUPPORTED_MSL" \
Note that you're enabling GLSL here as well. I suppose that's fine, even if it's not going to do all that much because the GL runner doesn't get built on macOS, but it's not quite what the commit message claims it does.
Do we really need to build widl at all? Couldn't we use MinGW widl? (i.e., x86_64-w64-mingw32-widl from the mingw-w64 brew package, and the mingw-w64-tools Debian package.)
Using our own widl means that we implicitly validate that the widl version we're claiming to be supported is indeed working correctly. But I'm not particularly attached to that, I can change to the brew version. I think I originally set to build it because on the old runner I couldn't touch the brew packages, and then never questioned the choice anymore.
Note that you're enabling GLSL here as well. I suppose that's fine, even if it's not going to do all that much because the GL runner doesn't get built on macOS, but it's not quite what the commit message claims it does.
Yeah, to me that's mostly a "Given that I'm touching this" change, which I think we often put in not-necessarily-too-related commits. I can certainly move in a separate commit. And yeah, it's not doing much right now. I think there is some value in compiling the code anyway, to gain some little more compiler diversity. Admittedly not a very compelling reason, but for very little cost as well.
Yeah, to me that's mostly a "Given that I'm touching this" change, which I think we often put in not-necessarily-too-related commits. I can certainly move in a separate commit.
A separate commit would be fine; I could live with doing it in the same commit, but I think the commit message should mention enabling GLSL either way.
And yeah, it's not doing much right now. I think there is some value in compiling the code anyway, to gain some little more compiler diversity.
The code is compiled without VKD3D_SHADER_UNSUPPORTED_GLSL as well; the define just changes what vkd3d_shader_get_supported_target_types() returns. That has consequences for what targets e.g. vkd3d_shader_compile() accepts, but it essentially doesn't matter as long as we don't run any code using VKD3D_SHADER_TARGET_GLSL.
added 5 commits
Toggle commit listadded 51 commits
-
a1174079...eeb7bbe3 - 46 commits from branch
wine:master
- 51cdb740 - ci: Remove the tart username and password environment variables.
- 2b84e30e - ci: Use widl from the mingw-w64 brew package on macOS.
- 7c3f424a - ci: Stop building widl for the macOS image.
- 19c69987 - ci: Build the DirectX shader compiler for macOS.
- ca309e43 - ci: Test DXIL shaders on macOS.
Toggle commit list-
a1174079...eeb7bbe3 - 46 commits from branch