forked from Wargus/wargus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
44 lines (44 loc) · 1.78 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
40
41
42
43
44
os: Visual Studio 2019
configuration:
- Release
before_build:
- mkdir build
- cd build
- IF DEFINED APPVEYOR_REPO_TAG_NAME (SET RELEASE=%APPVEYOR_REPO_TAG_NAME%) ELSE (SET RELEASE=master-builds)
- IF DEFINED APPVEYOR_REPO_TAG_NAME (SET SRCTAG=%APPVEYOR_REPO_TAG_NAME%) ELSE (SET SRCTAG=master)
- appveyor DownloadFile https://github.com/Wargus/win32-stratagus-dependencies/releases/download/%RELEASE%/dependencies.zip
- 7z x dependencies.zip
- appveyor DownloadFile https://github.com/Wargus/stratagus/releases/download/%RELEASE%/compiled-binaries.zip
- 7z x compiled-binaries.zip
- appveyor DownloadFile https://github.com/Wargus/stratagus/archive/%SRCTAG%.zip
- 7z x %SRCTAG%.zip
- IF DEFINED APPVEYOR_REPO_TAG_NAME (move stratagus-* stratagus-master)
- 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 16 2019" -T v141_xp -A win32 -DCMAKE_PREFIX_PATH="%cd%\\dependencies" -DSTRATAGUS=stratagus -DSTRATAGUS_INCLUDE_DIR="%cd%\\stratagus-master\\gameheaders" -DENABLE_NSIS=ON ..
- cd ..
build:
project: build\wargus.sln
artifacts:
- path: build\Wargus-*.exe
deploy:
- provider: GitHub
release: master-builds
description: 'Automatic builds from the master branch'
auth_token:
secure: NMy2KE3EpZTjverxNzEAoBnlV+7VLGvwy3e1WEIrliFy3R1oxuT+AgGUDcRwv9y/
artifact: /.*exe/
draft: false
prerelease: true
on:
branch: master
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
description: 'Release'
auth_token:
secure: NMy2KE3EpZTjverxNzEAoBnlV+7VLGvwy3e1WEIrliFy3R1oxuT+AgGUDcRwv9y/
artifact: /.*exe/
draft: false
prerelease: false
on:
appveyor_repo_tag: true