39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
os: Visual Studio 2019
|
|
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 16 2019" -T v141_xp -A win32 -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
|