forked from Wargus/stratagus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
39 lines (39 loc) · 1.33 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
os: Visual Studio 2015
shallow_clone: true
configuration:
- Release
before_build:
- mkdir build
- cd build
- appveyor DownloadFile https://github.com/Wargus/win32-stratagus-dependencies/releases/download/master-builds/dependencies.zip
- 7z x dependencies.zip
- appveyor DownloadFile https://github.com/jimpark/unsis/releases/download/2.50.0/nsis-2.50.0-Unicode-setup.exe
- nsis-2.50.0-Unicode-setup.exe /S /D=C:\Program Files (x86)\NSIS
- cmake -G "Visual Studio 14 2015" -T v140_xp -DCMAKE_PREFIX_PATH="%cd%\\dependencies" -DENABLE_NSIS=ON -DENABLE_STDIO_REDIRECT=ON ..
- cd ..
after_build:
- 7z a compiled-binaries.zip %cd%\build\stratagus.exe %cd%\build\dependencies\bin\*.dll
artifacts:
- path: build\Stratagus-*.exe
- path: compiled-binaries.zip
deploy:
- provider: GitHub
release: master-builds
description: 'Automatic builds from the master branch'
auth_token:
secure: NMy2KE3EpZTjverxNzEAoBnlV+7VLGvwy3e1WEIrliFy3R1oxuT+AgGUDcRwv9y/
artifact: /.*(exe|zip)/
draft: false
prerelease: true
on:
branch: master
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
description: 'Release'
auth_token:
secure: NMy2KE3EpZTjverxNzEAoBnlV+7VLGvwy3e1WEIrliFy3R1oxuT+AgGUDcRwv9y/
artifact: /.*(exe|zip)/
draft: false
prerelease: false
on:
appveyor_repo_tag: true