DirectXShaderCompiler/appveyor.yml

31 строка
782 B
YAML

version: 1.0.{build}
image: Visual Studio 2017
platform: x64
configuration: Debug
clone_folder: c:\projects\DirectXShaderCompiler
environment:
HLSL_SRC_DIR: c:\projects\DirectXShaderCompiler
HLSL_BLD_DIR: c:\projects\DirectXShaderCompiler.bin
install:
- ps: c:\projects\DirectXShaderCompiler\utils\appveyor\appveyor_setup.ps1
build_script:
- cmd: >-
cd %HLSL_SRC_DIR%
call utils\hct\hctstart %HLSL_SRC_DIR% %HLSL_BLD_DIR%
call utils\hct\hctbuild -%PLATFORM% -%CONFIGURATION% -vs2017
test_script:
- cmd: >-
cd %HLSL_SRC_DIR%
call utils\hct\hctstart %HLSL_SRC_DIR% %HLSL_BLD_DIR%
powershell utils\appveyor\appveyor_test.ps1
notifications:
- provider: GitHubPullRequest
on_build_success: true
on_build_failure: true
on_build_status_changed: true