forked from simco50/FluxEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
28 lines (28 loc) · 996 Bytes
/
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
version: 1.0.{build}
image: Visual Studio 2017
shallow_clone: true
environment:
matrix:
- configuration: Debug
- configuration: Release
platform:
- x64
- Win32
#init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
#environment:
# appveyor_rdp_password:
# secure: isPeZD3/K+h+07yX2nK8kQ==
before_build:
- ps: .\scripts\MakeVS2017.bat
after_build:
- cmd: 7z a FluxGame_%PLATFORM%_%CONFIGURATION%_%APPVEYOR_BUILD_NUMBER%.zip .\Build\FluxGame_%PLATFORM%_%CONFIGURATION%\* .\FluxGame\Resources\
build:
project: FluxEngine.sln
parallel: true
verbosity: minimal
artifacts:
- path: 'FluxGame_$(PLATFORM)_$(CONFIGURATION)_$(APPVEYOR_BUILD_NUMBER).zip'
name: Build_$(PLATFORM)_$(CONFIGURATION)_$(APPVEYOR_BUILD_NUMBER)