-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
22 lines (18 loc) · 886 Bytes
/
appveyor.yml
File metadata and controls
22 lines (18 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: "{build}"
environment:
KETCHUP_KSPDEPS: "http://build.apokee.com/dependencies/ksp/0.90"
matrix:
- KETCHUP_CONFIGURATION: Debug
- KETCHUP_CONFIGURATION: Release
install:
ps: |
New-Item "$env:APPVEYOR_BUILD_FOLDER\Dependencies\KSP" -Type Directory -Force | Out-Null
Start-FileDownload "$env:KETCHUP_KSPDEPS/Assembly-CSharp.dll" `
-FileName "$env:APPVEYOR_BUILD_FOLDER\Dependencies\KSP\Assembly-CSharp.dll"
Start-FileDownload "$env:KETCHUP_KSPDEPS/Assembly-CSharp-firstpass.dll" `
-FileName "$env:APPVEYOR_BUILD_FOLDER\Dependencies\KSP\Assembly-CSharp-firstpass.dll"
Start-FileDownload "$env:KETCHUP_KSPDEPS/UnityEngine.dll" `
-FileName "$env:APPVEYOR_BUILD_FOLDER\Dependencies\KSP\UnityEngine.dll"
build_script:
ps: |
./build Configuration=$env:KETCHUP_CONFIGURATION