You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure-pipelines/end-to-end-tests-dir/ci.ps1
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -113,3 +113,12 @@ if (-not ($Output.Contains("feature-fails:${Triplet}: BUILD_FAILED:"))) {
113
113
if (-not ($Output.Contains("regression:${Triplet}: CASCADED_DUE_TO_MISSING_DEPENDENCIES:"))) {
114
114
throw'regression build must cascade'
115
115
}
116
+
# Non-dry run with port regression@2
117
+
$Output= Run-VcpkgAndCaptureStdErr ci @commonArgs--x-builtin-ports-root="$PSScriptRoot/../e2e-ports/ci"--binarysource="clear;files,$ArchiveRoot"--parent-hashes="$TestingRoot/parent-hashes.json"--overlay-ports="$PSScriptRoot/../e2e-ports/ci-independent-regression/v2"
118
+
Throw-IfNotFailed
119
+
if (-not ($Output.Contains("REGRESSION: Independent feature-fails:${Triplet} failed with BUILD_FAILED."))) {
120
+
throw'feature-fails[fail] build failure must be reported as independent regression'
121
+
}
122
+
if ($Output.Contains("REGRESSION: Independent regression:${Triplet} failed with BUILD_FAILED.")) {
123
+
throw'regression (port) build failure must not be reported as independent regression'
0 commit comments