Gobligine/appveyor.yml

40 lines
1.4 KiB
YAML
Raw Normal View History

2020-06-06 03:06:24 -06:00
os: Visual Studio 2019
2015-11-23 10:14:07 -07:00
shallow_clone: true
configuration:
- Release
2015-11-23 10:14:07 -07:00
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
2016-03-07 02:48:59 -07:00
- 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" -DENABLE_NSIS=ON -DENABLE_STDIO_REDIRECT=ON ..
2015-11-23 10:14:07 -07:00
- cd ..
after_build:
2021-12-23 11:51:15 -07:00
- 7z a compiled-binaries.zip %cd%\build\Release\*.pdb %cd%\build\stratagus.exe %cd%\build\dependencies\bin\*.dll
artifacts:
- path: build\Stratagus-*.exe
- path: compiled-binaries.zip
deploy:
2016-03-07 02:48:59 -07:00
- provider: GitHub
release: master-builds
description: 'Automatic builds from the master branch'
auth_token:
secure: NMy2KE3EpZTjverxNzEAoBnlV+7VLGvwy3e1WEIrliFy3R1oxuT+AgGUDcRwv9y/
artifact: /.*(exe|zip)/
2016-03-07 02:48:59 -07:00
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)/
2016-03-07 02:48:59 -07:00
draft: false
prerelease: false
on:
appveyor_repo_tag: true