Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 55f6bcf

Browse files
committed
Trying to get the number of builds down...
1 parent dbf983f commit 55f6bcf

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

appveyor.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,14 @@ os: Visual Studio 2017
22
version: '2.8.0.{build}'
33
skip_tags: true
44

5-
environment:
6-
matrix:
7-
- BUILD_TYPE: normal
8-
95
install:
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
5552
for:
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

0 commit comments

Comments
 (0)