solvespace/appveyor.yml

38 lines
1.3 KiB
YAML
Raw Normal View History

2015-09-13 11:19:15 +00:00
version: 2.1.{build}
2016-04-19 12:19:00 +00:00
clone_depth: 1
before_build:
2015-09-13 11:19:15 +00:00
- git submodule update --init
2016-04-19 12:19:00 +00:00
- mkdir build
- cd build
- set tag=x%APPVEYOR_REPO_TAG_NAME%
- if %tag:~,2% == xv (set BUILD_TYPE=RelWithDebInfo) else (set BUILD_TYPE=Debug)
2016-04-19 12:19:00 +00:00
- cmake -G"Visual Studio 12" -T v120_xp -DCMAKE_BUILD_TYPE=%BUILD_TYPE% ..
build_script:
- msbuild "src\solvespace.vcxproj" /verbosity:minimal /property:Configuration=%BUILD_TYPE% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
2015-09-13 11:19:15 +00:00
artifacts:
2016-04-19 12:19:00 +00:00
- path: build\src\Debug\solvespace.exe
2015-09-13 11:19:15 +00:00
name: solvespace.exe
2016-04-19 12:19:00 +00:00
- path: build\src\Debug\solvespace.pdb
name: solvespace.pdb
- path: build\src\RelWithDebInfo\solvespace.exe
name: solvespace.exe
- path: build\src\RelWithDebInfo\solvespace.pdb
2015-09-13 11:19:15 +00:00
name: solvespace.pdb
deploy:
# Releases to solvespace/solvespace
- provider: GitHub
auth_token:
secure: P9/pf2nM+jlWKe7pCjMp41HycBNP/+5AsmE/TETrDUoBOa/9WFHelqdVFrbRn9IC
description: ""
artifact: solvespace.exe
on:
appveyor_repo_tag: true
# Releases to whitequark/solvespace (to be removed)
2015-09-13 11:19:15 +00:00
- provider: GitHub
auth_token:
secure: Flqxu1cz6PyxVT1wzTP4bSrQOY8wFrO7pJxYxvjEkLqIUU4dsDQrs2rac/A9deet
description: ""
artifact: solvespace.exe
on:
appveyor_repo_tag: true