This repository was archived by the owner on Jun 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +16
-6
lines changed
Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -2,17 +2,14 @@ os: Visual Studio 2017
22version : ' 2.8.0.{build}'
33skip_tags : true
44
5- environment :
6- matrix :
7- - BUILD_TYPE : normal
8-
95install :
106- choco install --no-progress BCC-MSBuildLog
117- choco install --no-progress BCC-Submission
128- ps : |
139 $full_build = Test-Path env:GHFVS_KEY
1410 $forVSInstaller = $env:BUILD_TYPE -eq "vsinstaller"
15- $package = $full_build -and ($env:APPVEYOR_PULL_REQUEST_NUMBER -or $forVSInstaller -or $env:BUILD_TYPE -eq "package")
11+ $forPackage = $env:BUILD_TYPE -eq "package"
12+ $package = $full_build -and ($env:APPVEYOR_PULL_REQUEST_NUMBER -or $forVSInstaller -or $forPackage)
1613
1714 $message = "Building "
1815 if ($package) { $message += "and packaging "}
@@ -53,12 +50,25 @@ on_success:
5350 }
5451
5552for :
53+ -
54+ branches :
55+ except :
56+ - /releases/.*-vsinstaller/
57+ environment :
58+ matrix :
59+ - BUILD_TYPE : normal
5660-
5761 branches :
5862 only :
5963 - /releases/.*-vsinstaller/
60- - master
6164 environment :
6265 matrix :
6366 - BUILD_TYPE : package
6467 - BUILD_TYPE : vsinstaller
68+ -
69+ branches :
70+ only :
71+ - master
72+ environment :
73+ matrix :
74+ - BUILD_TYPE : package
You can’t perform that action at this time.
0 commit comments