We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef5f821 commit 28394c5Copy full SHA for 28394c5
1 file changed
.github/workflows/xbox-host-ci.yml
@@ -96,12 +96,12 @@ jobs:
96
echo SDK: %WindowsSDKVersion%
97
cl /nologo /std:c++17 /W3 /c /DWINAPI_FAMILY=WINAPI_FAMILY_GAMES ^
98
tests\gamecore_api_probe.cpp > host_probe.log 2>&1
99
- set CL_EXIT=%errorlevel%
100
- type host_probe.log
101
- if not "%CL_EXIT%"=="0" (
+ if errorlevel 1 (
+ type host_probe.log
102
echo ::error::ホスト使用 API のプローブが失敗 (全文は上の host_probe.log 出力)
103
exit /b 1
104
)
105
echo OK: host APIs are all present in the GAMES partition
106
107
# V8 platform 層の API: 欠落 = 移植時の置換 TODO リスト (情報提供、fail しない)
0 commit comments