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
$Output= Run-VcpkgAndCaptureOutput ci --triplet=$Triplet--x-builtin-ports-root="$emptyDir"--binarysource=clear --overlay-ports="$PSScriptRoot/../e2e-ports/duplicate-file-a"--overlay-ports="$PSScriptRoot/../e2e-ports/duplicate-file-b"
# Not a dry run in order to populate the artifact cache.
78
+
$Output= Run-VcpkgAndCaptureOutput ci @commonArgs--x-builtin-ports-root="$PSScriptRoot/../e2e-ports/ci"--binarysource="clear;files,$ArchiveRoot"--output-hashes="$TestingRoot/parent-hashes.json"
79
+
Throw-IfFailed
80
+
if (-not ($Output.Contains("base-port:${Triplet}: SUCCEEDED:"))) {
81
+
throw'base-port build must succeed'
82
+
}
83
+
if (-not ($Output.Contains("feature-fails:${Triplet}: SUCCEEDED:"))) {
$Output= Run-VcpkgAndCaptureOutput ci @commonArgs--x-builtin-ports-root="$PSScriptRoot/../e2e-ports/ci"--binarysource="clear;files,$ArchiveRoot"--parent-hashes="$TestingRoot/parent-hashes.json"
89
+
Throw-IfFailed
90
+
if ($Output.Contains("base-port:${Triplet}: SUCCEEDED:")) {
91
+
throw'base-port must not be rebuilt again'
92
+
}
93
+
if ($Output.Contains("feature-fails:${Triplet}: SUCCEEDED:")) {
0 commit comments