File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ let Artifacts = ../../Constants/Artifacts.dhall
2222
2323let Dockers = ../../ Constants / DockerVersions. dhall
2424
25+ let Profiles = ../../ Constants / Profiles. dhall
26+
2527let B / SoftFail = B. definitions/ commandStep/ properties/ soft_fail/ Type
2628
2729let 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
Original file line number Diff line number Diff line change @@ -18,9 +18,13 @@ let Network = ../../Constants/Network.dhall
1818
1919let Dockers = ../../ Constants / DockerVersions. dhall
2020
21+ let Profile = ../../ Constants / Profiles. dhall
22+
2123let 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
2529in Pipeline. build
2630 Pipeline. Config:: {
Original file line number Diff line number Diff line change @@ -4,7 +4,13 @@ let Network = ../../Constants/Network.dhall
44
55let Connectivity = ../../ Command / Rosetta / Connectivity. dhall
66
7+ let Profile = ../../ Constants / Profiles. dhall
8+
79in 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 )
You can’t perform that action at this time.
0 commit comments