forked from SuperTux/supertux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
58 lines (50 loc) · 1.5 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
46
47
48
49
50
51
52
53
54
55
56
57
58
version: '{build}'
os: Visual Studio 2015
configuration: Release
platform: x86
branches:
except:
- coverity_scan # No need for Windows builds on that branch
install:
- ps: |
Invoke-WebRequest http://download.supertuxproject.org/builddep/dependencies-win32.zip -OutFile "$env:APPVEYOR_BUILD_FOLDER/dependencies.zip"
Add-Type -assembly "system.io.compression.filesystem"
[io.compression.zipfile]::ExtractToDirectory("$env:APPVEYOR_BUILD_FOLDER/dependencies.zip", "$env:APPVEYOR_BUILD_FOLDER/")
before_build:
- cmd: |
git submodule update --init --recursive
echo Running cmake ..
cmake -G "Visual Studio 14 2015" -DCMAKE_INSTALL_PREFIX=%P% -DHAVE_SDL=true -DPACKAGE_VCREDIST=true
build:
project: ALL_BUILD.vcxproj
parallel: true
verbosity: minimal
after_build:
- cmd: '"C:\Program Files (x86)\CMake\bin\cpack.exe"'
- ps: |
Write-Output Get-FileHash SuperTux-*
test: off
artifacts:
- path: SuperTux-*
name: setup
deploy:
- provider: GitHub
description: 'SuperTux release'
auth_token:
secure: 1sgroG7ycKHC6R2y/V7DECd/SHxXK4CNSDU7zZOnAlyBiVKT9ykvRKWt2DGcEZDq
artifact: setup
draft: true
on:
branch: master # release from master branch only
appveyor_repo_tag: true # deploy on tag push only
#- provider: BinTray
# username: maths22
# api_key:
# secure: 9miH0V65c10cbWfovqIfIHWsbyrg6jZDnaYxyGYHF5pyQbPnS+LcIX6Y/8gK2pM4
# subject: supertux
# repo: SuperTux-Nightly
# package: win32
# publish: true
# override: true
# on:
# branch: master