fix(gates): initialize connected soak artifacts before isolation
This commit is contained in:
parent
0b6c6557a8
commit
1f75ce0505
2 changed files with 4 additions and 1 deletions
|
|
@ -418,6 +418,9 @@ public sealed class ConnectedWorldSoakRouteContractTests
|
||||||
|
|
||||||
AssertAppearsInOrder(
|
AssertAppearsInOrder(
|
||||||
source,
|
source,
|
||||||
|
"$artifactDir = \"$prefix.artifacts\"",
|
||||||
|
"$null = New-Item -ItemType Directory -Force -Path $artifactDir",
|
||||||
|
"$renderPackGate = New-ConnectedRenderPackGateState",
|
||||||
"Get-ChildItem Env: | Where-Object { $_.Name -like 'ACDREAM_*' }",
|
"Get-ChildItem Env: | Where-Object { $_.Name -like 'ACDREAM_*' }",
|
||||||
"Join-Path $artifactDir 'env-disclosure.json'",
|
"Join-Path $artifactDir 'env-disclosure.json'",
|
||||||
"try {");
|
"try {");
|
||||||
|
|
|
||||||
|
|
@ -72,6 +72,7 @@ $markerLog = "$prefix.markers.log"
|
||||||
$sampleCsv = "$prefix.samples.csv"
|
$sampleCsv = "$prefix.samples.csv"
|
||||||
$reportJson = "$prefix.report.json"
|
$reportJson = "$prefix.report.json"
|
||||||
$artifactDir = "$prefix.artifacts"
|
$artifactDir = "$prefix.artifacts"
|
||||||
|
$null = New-Item -ItemType Directory -Force -Path $artifactDir
|
||||||
$collisionShadowDir = Join-Path $artifactDir 'collision-shadow'
|
$collisionShadowDir = Join-Path $artifactDir 'collision-shadow'
|
||||||
$checkpointTimeline = Join-Path $artifactDir 'world-lifecycle.checkpoints.jsonl'
|
$checkpointTimeline = Join-Path $artifactDir 'world-lifecycle.checkpoints.jsonl'
|
||||||
$frameHistory = Join-Path $artifactDir 'frame-history.csv'
|
$frameHistory = Join-Path $artifactDir 'frame-history.csv'
|
||||||
|
|
@ -776,7 +777,6 @@ $env:ACDREAM_COLLISION_SHADOW_DIR =
|
||||||
# ACDREAM_DUMP_MOVE_TRUTH because nothing else the script sets was
|
# ACDREAM_DUMP_MOVE_TRUTH because nothing else the script sets was
|
||||||
# recorded anywhere). Written into the automation artifact directory
|
# recorded anywhere). Written into the automation artifact directory
|
||||||
# BEFORE launch so a failed/aborted run still leaves the disclosure behind.
|
# BEFORE launch so a failed/aborted run still leaves the disclosure behind.
|
||||||
$null = New-Item -ItemType Directory -Force -Path $artifactDir
|
|
||||||
$acdreamEnvVars = Get-ChildItem Env: | Where-Object { $_.Name -like 'ACDREAM_*' } |
|
$acdreamEnvVars = Get-ChildItem Env: | Where-Object { $_.Name -like 'ACDREAM_*' } |
|
||||||
Sort-Object Name |
|
Sort-Object Name |
|
||||||
ForEach-Object {
|
ForEach-Object {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue