24 lines
709 B
YAML
24 lines
709 B
YAML
shallow_clone: true
|
|
configuration:
|
|
- Release
|
|
before_build:
|
|
- mkdir build
|
|
- cd build
|
|
- appveyor DownloadFile https://github.com/Wargus/stratagus/releases/download/2015-30-11/dependencies.zip
|
|
- 7z x dependencies.zip
|
|
- choco install nsis -pre
|
|
- cmake -G "Visual Studio 14 2015" -DCMAKE_PREFIX_PATH="%cd%\\dependencies" -DENABLE_NSIS=ON -DENABLE_STDIO_REDIRECT=ON ..
|
|
- cd ..
|
|
artifacts:
|
|
- path: build\Stratagus-*.exe
|
|
deploy:
|
|
release: master-builds
|
|
description: 'Automatic builds from the master branch'
|
|
provider: GitHub
|
|
auth_token:
|
|
secure: NMy2KE3EpZTjverxNzEAoBnlV+7VLGvwy3e1WEIrliFy3R1oxuT+AgGUDcRwv9y/
|
|
artifact: /.*exe/
|
|
draft: false
|
|
prerelease: true
|
|
on:
|
|
branch: master
|