cutter/.appveyor.yml
Duncan Ogilvie e3e070d094 Remove cutter win32 (#58)
* remove cutter_win32
* build without compile errors
* temporary workaround for sdb problems (now compiles again at least)
* totally not a hack to get sdb working
seriously, don't do this but it works
2017-10-15 21:19:48 +02:00

52 lines
1.0 KiB
YAML

version: '1.0-git-{build}'
skip_tags: true
image: 'Visual Studio 2015'
clone_depth: 1
# Build configuration
configuration:
- Release
# Branches to build
branches:
only:
- master
# Environment
environment:
PYTHON: 'C:\Python36-x64'
NINJA_URL: https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip
QTDIR: 'C:\Qt\5.9.1\msvc2015_64'
QT32PATH: 'C:\Qt\5.9.1\msvc2015'
QT64PATH: 'C:\Qt\5.9.1\msvc2015_64'
VSVARSALLPATH: 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat'
before_build:
- cmd: prepare_r2.bat
# Build config
build_script:
- cmd: build.bat 32
- cmd: build.bat 64
# Tests
test: off
# Artifacts
artifacts:
- path: build32\cutter32
- path: build64\cutter64
#deploy:
# release: cutter-1.0-$(appveyor_build_version)
# description: 'Cutter Windows'
# provider: GitHub
# auth_token:
# secure: 2SmsqS2RaX2N5c9UwUcfBwNmMX64FfPAZFShLyxIkZXiC8vLaYCHToWxBYEuWRSk
# artifact: Cutter
# draft: true
# prerelease: true
# on:
# branch: master
# appveyor_repo_tag: false