Skip to content

Commit 88a7131

Browse files
committed
update depends on to wait for instrumented docker
1 parent bc9d648 commit 88a7131

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

buildkite/src/Command/ArchiveNodeTest.dhall

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ let Size = ./Size.dhall
66

77
let RunWithPostgres = ./RunWithPostgres.dhall
88

9+
let BuildFlags = ../Constants/BuildFlags.dhall
10+
911
let key = "archive-node-test"
1012

1113
in { step =
@@ -21,6 +23,7 @@ in { step =
2123
( Artifacts.fullDockerTag
2224
Artifacts.Tag::{
2325
, artifact = Artifacts.Type.FunctionalTestSuite
26+
, buildFlags = BuildFlags.Type.Instrumented
2427
}
2528
)
2629
"./scripts/tests/archive-node-test.sh && buildkite/scripts/upload-partial-coverage-data.sh ${key}"

buildkite/src/Jobs/Test/ArchiveNodeTest.dhall

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,14 @@ let Artifacts = ../../Constants/Artifacts.dhall
1212

1313
let Dockers = ../../Constants/DockerVersions.dhall
1414

15+
let buildFlags = ../../Constants/BuildFlags.dhall
16+
1517
let dependsOn =
16-
Dockers.dependsOn Dockers.DepsSpec::{ artifact = Artifacts.Type.Rosetta }
18+
Dockers.dependsOn
19+
Dockers.DepsSpec::{
20+
, artifact = Artifacts.Type.FunctionalTestSuite
21+
, buildFlags = buildFlags.Type.Instrumented
22+
}
1723

1824
in Pipeline.build
1925
Pipeline.Config::{

0 commit comments

Comments
 (0)