49 lines
1.8 KiB
YAML
49 lines
1.8 KiB
YAML
platform:
|
|
- x86
|
|
- x64
|
|
|
|
version: 1.0.{build}
|
|
install:
|
|
- ps: Invoke-WebRequest 'https://github.com/embree/embree/releases/download/v2.15.0/embree-2.15.0.x64.windows.zip' -OutFile 'embree64.zip'
|
|
- ps: 7z x embree64.zip -oc:\
|
|
- ps: Invoke-WebRequest 'https://github.com/embree/embree/releases/download/v2.15.0/embree-2.15.0.win32.windows.zip' -OutFile 'embree.zip'
|
|
- ps: 7z x embree.zip -oc:\
|
|
build_script:
|
|
- ps: >-
|
|
$env:Path += ";C:\cygwin64\bin"
|
|
|
|
mkdir cmakebuild
|
|
|
|
cd cmakebuild
|
|
|
|
If ($env:Platform -Match "x64") {
|
|
cmake .. -T v120_xp -Dembree_DIR="c:/embree-2.15.0.x64.windows" -DCMAKE_GENERATOR_PLATFORM=x64 -DENABLE_LIGHTPREVIEW=NO -DQt5Widgets_DIR="C:\Qt\5.8\msvc2013_64\lib\cmake\Qt5Widgets"
|
|
|
|
$cmakePlatform = "x64"
|
|
} Else {
|
|
cmake .. -T v120_xp -Dembree_DIR="c:/embree-2.15.0.win32.windows" -DENABLE_LIGHTPREVIEW=NO -DQt5Widgets_DIR="C:\Qt\5.8\msvc2013\lib\cmake\Qt5Widgets"
|
|
|
|
$cmakePlatform = "win32"
|
|
}
|
|
|
|
msbuild /target:testlight /p:Configuration=Release /p:Platform=$cmakePlatform /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" tyrutils.sln
|
|
|
|
msbuild /target:testqbsp /p:Configuration=Release /p:Platform=$cmakePlatform /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" tyrutils.sln
|
|
|
|
msbuild /p:Configuration=Release /p:Platform=$cmakePlatform /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" PACKAGE.vcxproj
|
|
|
|
.\light\Release\testlight.exe
|
|
|
|
.\qbsp\Release\testqbsp.exe
|
|
artifacts:
|
|
- path: cmakebuild\*.zip
|
|
deploy:
|
|
description: 'release description'
|
|
provider: GitHub
|
|
auth_token:
|
|
secure: 'kTa/cPIBtiixoSjXq1WoVD04ZFzbGhTPcPChAkh99Kf5Sqhy+kE8E3jUYe28nPDO'
|
|
draft: true
|
|
prerelease: false
|
|
on:
|
|
appveyor_repo_tag: true
|