Clean up GPU-based validation warnings (#309)

This commit is contained in:
Chuck Walbourn
2023-01-31 09:57:16 -08:00
committed by GitHub
parent 371643fce2
commit 126d15c39a
4 changed files with 10 additions and 7 deletions

View File

@@ -101,14 +101,13 @@ jobs:
inputs:
script: g++ --version
- task: CmdLine@2
# The error checks are commented out due to a bug with vcpkg not returning 0 on success.
displayName: VCPKG install headers
inputs:
script: |
call vcpkg install directxmath
REM @if ERRORLEVEL 1 goto error
@if ERRORLEVEL 1 goto error
call vcpkg install directx-headers
REM @if ERRORLEVEL 1 goto error
@if ERRORLEVEL 1 goto error
:finish
@echo --- VCPKG COMPLETE ---
exit /b 0
@@ -203,9 +202,9 @@ jobs:
inputs:
script: |
call vcpkg install directxmath
REM @if ERRORLEVEL 1 goto error
@if ERRORLEVEL 1 goto error
call vcpkg install directx-headers
REM @if ERRORLEVEL 1 goto error
@if ERRORLEVEL 1 goto error
:finish
@echo --- VCPKG COMPLETE ---
exit /b 0