1234567891011121314151617181920212223242526272829303132333435 |
- version: 2.0.{build}
- environment:
- matrix:
- - solution_name: win32/sdlpal.sln
- BUILD_OPTIONS: /p:Configuration=Release /m
- - solution_name: winrt/SDLPal.UWP.sln
- BUILD_OPTIONS: /p:Configuration=Release;AppxBundle=Always;AppxBundlePlatforms="x86|x64|ARM" /m
- build_script:
- - |
- msbuild %solution_name% %BUILD_OPTIONS%
- before_build:
- # SDL submodule setup
- - |-
- git submodule update --init 3rd/SDL
- deploy:
- - provider: GitHub
- on:
- appveyor_repo_tag: true
- auth_token:
- secure: RYDRqm5LncsJG32FRSlCkLzkJC4ykCtlgO3+xW4q80wQOA3U9pHAe2beyMEduJIe
- artifacts:
- - path: win32/Release/sdlpal.exe
- name: win32 build
- - path: winrt/AppPackages/SDLPal
- name: SDLPal UWP
- type: zip
- notifications:
- - provider: Webhook
- url: https://webhooks.gitter.im/e/2accb0e6e37119e604b3
- method: POST
- on_build_success: true
- on_build_failure: true
- on_build_status_changed: true
|