[ci] Specify -HV 2018 to dxc (#2447)

This avoids breaking the build with the latest release of dxc, which
made HLSL the default.
This commit is contained in:
Fredrik Fornwall
2023-08-29 19:59:50 +02:00
committed by GitHub
parent 6aca2e2b5e
commit 1192588486

View File

@@ -255,7 +255,14 @@ fn run(args: Args) -> anyhow::Result<()> {
bin,
file,
config_item,
&["-Wno-parentheses-equality", "-Zi", "-Qembed_debug", "-Od"],
&[
"-Wno-parentheses-equality",
"-Zi",
"-Qembed_debug",
"-Od",
"-HV",
"2018",
],
)
})
}