Skip to content

Commit f76ab48

Browse files
committed
fix deps to mainnet profile
1 parent 70d31ba commit f76ab48

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

buildkite/src/Command/Rosetta/Connectivity.dhall

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ let Artifacts = ../../Constants/Artifacts.dhall
2222

2323
let Dockers = ../../Constants/DockerVersions.dhall
2424

25+
let Profiles = ../../Constants/Profiles.dhall
26+
2527
let B/SoftFail = B.definitions/commandStep/properties/soft_fail/Type
2628

2729
let Spec =
@@ -32,6 +34,7 @@ let Spec =
3234
, additionalDirtyWhen : List S.Type
3335
, softFail : B/SoftFail
3436
, timeout : Natural
37+
, profile : Profiles.Type
3538
}
3639
, default =
3740
{ dockerType = Dockers.Type.Bullseye
@@ -40,6 +43,7 @@ let Spec =
4043
, additionalDirtyWhen = [] : List S.Type
4144
, softFail = B/SoftFail.Boolean False
4245
, timeout = 1000
46+
, profile = Profiles.Type.Devnet
4347
}
4448
}
4549

@@ -70,6 +74,7 @@ let command
7074
, codename = spec.dockerType
7175
, network = spec.network
7276
, artifact = Artifacts.Type.Rosetta
77+
, profile = spec.profile
7378
}
7479
}
7580

buildkite/src/Jobs/Test/ConnectToMainnet.dhall

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,13 @@ let Network = ../../Constants/Network.dhall
1818

1919
let Dockers = ../../Constants/DockerVersions.dhall
2020

21+
let Profile = ../../Constants/Profiles.dhall
22+
2123
let network = Network.Type.Mainnet
2224

23-
let dependsOn = Dockers.dependsOn Dockers.DepsSpec::{ network = network }
25+
let dependsOn =
26+
Dockers.dependsOn
27+
Dockers.DepsSpec::{ network = network, profile = Profile.Type.Mainnet }
2428

2529
in Pipeline.build
2630
Pipeline.Config::{

buildkite/src/Jobs/Test/RosettaMainnetConnect.dhall

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ let Network = ../../Constants/Network.dhall
44

55
let Connectivity = ../../Command/Rosetta/Connectivity.dhall
66

7+
let Profile = ../../Constants/Profiles.dhall
8+
79
in Pipeline.build
810
( Connectivity.pipeline
9-
Connectivity.Spec::{ network = Network.Type.Mainnet, timeout = 2400 }
11+
Connectivity.Spec::{
12+
, network = Network.Type.Mainnet
13+
, profile = Profile.Type.Mainnet
14+
, timeout = 2400
15+
}
1016
)

0 commit comments

Comments
 (0)