-
Notifications
You must be signed in to change notification settings - Fork 55
/
appveyor.yml
45 lines (45 loc) · 1.9 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
45
os: Visual Studio 2019
clone_depth: 2
configuration:
- Release
before_build:
- git submodule update --init --recursive --depth 2
- 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/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
- move stratagus-midiplayer.exe stratagusmidiplayer.exe
- IF DEFINED APPVEYOR_REPO_TAG_NAME (move stratagus-* stratagus-master)
- move stratagusmidiplayer.exe stratagus-midiplayer.exe
- 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 -DENABLE_VENDORED_LIBS=ON ..
- cd ..
build_script: cmake --build build --config Release --target ALL_BUILD -j
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: /.*portable.*exe/
draft: false
prerelease: true
on:
branch: master
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
description: 'Release'
auth_token:
secure: NMy2KE3EpZTjverxNzEAoBnlV+7VLGvwy3e1WEIrliFy3R1oxuT+AgGUDcRwv9y/
artifact: /.*portable.*exe/
draft: false
prerelease: false
on:
appveyor_repo_tag: true