forked from git-tfs/git-tfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
25 lines (24 loc) · 1022 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
#appveyor.yml reference: http://www.appveyor.com/docs/appveyor-yml
image: Visual Studio 2017
clone_folder: c:\gittfs
# build cache to preserve files/folders between builds
cache:
- src\packages -> src\paket.lock # preserve "packages" directory in the root of build folder but will reset it if `paket.lock` is modified
init: []
build_script:
- ps: |
$env:configuration = "Release"
cd src
if($env:target -eq $null)
{
$target = "AppVeyorBuild"
echo "target: $target"
.\build.ps1 -Target "$target" -Configuration $env:configuration -ScriptArgs '-isDryRun=true -gitHubUserAccount"$env:gitHubUserAccount" -gitHubToken="$env:gitHubToken" -chocolateyToken="$env:chocolateyToken"'
}
else
{
$target = $env:target
echo "target: $target"
.\build.ps1 -Target "$target" -Configuration $env:configuration -ScriptArgs '-isDryRun=false -gitHubUserAccount"$env:gitHubUserAccount" -gitHubToken="$env:gitHubToken" -chocolateyToken="$env:chocolateyToken"'
}
test: off