forked from Wargus/stratagus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
39 lines (39 loc) · 1.37 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 2019
clone_depth: 2
configuration:
- Release
before_build:
- git submodule update --init --recursive --depth 2
- mkdir build
- cd build
- 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 v142 -A win32 -DENABLE_NSIS=ON -DENABLE_STDIO_REDIRECT=ON -DBUILD_VENDORED_LUA=ON -DBUILD_VENDORED_SDL=ON -DBUILD_VENDORED_MEDIA_LIBS=ON ..
- cd ..
build_script: cmake --build build --config Release --target ALL_BUILD -j
after_build:
- 7z a compiled-binaries.zip %cd%\build\Release\*.pdb %cd%\build\stratagus.exe %cd%\build\stratagus-midiplayer.exe
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