Skip to content

Commit 572ac2c

Browse files
committed
Revert "Revert "Revert "fixing strange error, looks like we hit limit of jobs"""
This reverts commit 7a7de4f.
1 parent a581d34 commit 572ac2c

File tree

6 files changed

+77
-3
lines changed

6 files changed

+77
-3
lines changed

buildkite/src/Jobs/Lint/ArchiveUpgrade.dhall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ in Pipeline.build
2929
]
3030
, path = "Lint"
3131
, name = "ArchiveUpgrade"
32-
, tags = ([]: List PipelineTag.Type)
32+
, tags = [] : List PipelineTag.Type
3333
}
3434
, steps =
3535
[ Command.build
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
let ArtifactPipelines = ../../Command/MinaArtifact.dhall
2+
3+
let Artifacts = ../../Constants/Artifacts.dhall
4+
5+
let Pipeline = ../../Pipeline/Dsl.dhall
6+
7+
let PipelineTag = ../../Pipeline/Tag.dhall
8+
9+
let Network = ../../Constants/Network.dhall
10+
11+
in Pipeline.build
12+
( ArtifactPipelines.pipeline
13+
ArtifactPipelines.MinaBuildSpec::{
14+
, artifacts =
15+
[ Artifacts.Type.Daemon
16+
, Artifacts.Type.LogProc
17+
, Artifacts.Type.Archive
18+
, Artifacts.Type.Rosetta
19+
, Artifacts.Type.ZkappTestTransaction
20+
, Artifacts.Type.CreateLegacyGenesis
21+
]
22+
, network = Network.Type.Devnet
23+
, tags = [] : List PipelineTag.Type
24+
}
25+
)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
let ArtifactPipelines = ../../Command/MinaArtifact.dhall
2+
3+
let Artifacts = ../../Constants/Artifacts.dhall
4+
5+
let Pipeline = ../../Pipeline/Dsl.dhall
6+
7+
let PipelineTag = ../../Pipeline/Tag.dhall
8+
9+
let Network = ../../Constants/Network.dhall
10+
11+
let DebianVersions = ../../Constants/DebianVersions.dhall
12+
13+
in Pipeline.build
14+
( ArtifactPipelines.onlyDebianPipeline
15+
ArtifactPipelines.MinaBuildSpec::{
16+
, artifacts = [ Artifacts.Type.Daemon ]
17+
, tags = [] : List PipelineTag.Type
18+
, network = Network.Type.DevnetLegacy
19+
, debVersion = DebianVersions.DebVersion.Bullseye
20+
}
21+
)
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
let ArtifactPipelines = ../../Command/MinaArtifact.dhall
2+
3+
let Artifacts = ../../Constants/Artifacts.dhall
4+
5+
let Pipeline = ../../Pipeline/Dsl.dhall
6+
7+
let PipelineTag = ../../Pipeline/Tag.dhall
8+
9+
let PipelineScope = ../../Pipeline/Scope.dhall
10+
11+
let DebianVersions = ../../Constants/DebianVersions.dhall
12+
13+
let Network = ../../Constants/Network.dhall
14+
15+
let Profiles = ../../Constants/Profiles.dhall
16+
17+
in Pipeline.build
18+
( ArtifactPipelines.onlyDebianPipeline
19+
ArtifactPipelines.MinaBuildSpec::{
20+
, artifacts = [ Artifacts.Type.Daemon ]
21+
, tags = [] : List PipelineTag.Type
22+
, debVersion = DebianVersions.DebVersion.Bullseye
23+
, network = Network.Type.MainnetLegacy
24+
, profile = Profiles.Type.Mainnet
25+
, scope =
26+
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
27+
}
28+
)

buildkite/src/Jobs/Test/ConnectToDevnet.dhall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ in Pipeline.build
3131
]
3232
, path = "Test"
3333
, name = "ConnectToDevnet"
34-
, tags = ([]: List PipelineTag.Type)
34+
, tags = [] : List PipelineTag.Type
3535
}
3636
, steps =
3737
[ ConnectToNetwork.step

buildkite/src/Jobs/Test/ConnectToMainnet.dhall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ in Pipeline.build
3939
, name = "ConnectToMainnet"
4040
, scope =
4141
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
42-
, tags = ([]: List PipelineTag.Type)
42+
, tags = [] : List PipelineTag.Type
4343
}
4444
, steps =
4545
[ ConnectToNetwork.step

0 commit comments

Comments
 (0)