Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion buildkite/src/Constants/Network.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ let List/any = Prelude.List.any

let Network
: Type
= < Devnet | Mainnet | Berkeley | DevnetLegacy | MainnetLegacy | PreMesa1 >
= < Devnet
| Mainnet
| Berkeley
| DevnetLegacy
| MainnetLegacy
| PreMesa1
| Mesa
>

let capitalName =
\(network : Network)
Expand All @@ -15,6 +22,7 @@ let capitalName =
, DevnetLegacy = "DevnetLegacy"
, MainnetLegacy = "MainnetLegacy"
, PreMesa1 = "PreMesa1"
, Mesa = "Mesa"
}
network

Expand All @@ -27,6 +35,7 @@ let lowerName =
, DevnetLegacy = "devnet_legacy"
, MainnetLegacy = "mainnet_legacy"
, PreMesa1 = "hetzner-pre-mesa-1"
, Mesa = "mesa"
}
network

Expand All @@ -39,6 +48,7 @@ let requiresMainnetBuild =
, DevnetLegacy = True
, MainnetLegacy = True
, PreMesa1 = False
, Mesa = False
}
network

Expand Down
1 change: 1 addition & 0 deletions buildkite/src/Constants/Profiles.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ let fromNetwork =
, DevnetLegacy = Profile.Devnet
, MainnetLegacy = Profile.Mainnet
, PreMesa1 = Profile.Devnet
, Mesa = Profile.Devnet
}
network

Expand Down
39 changes: 39 additions & 0 deletions buildkite/src/Jobs/Release/MinaArtifactBookwormMesaDevnet.dhall
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
let ArtifactPipelines = ../../Command/MinaArtifact.dhall

let DebianVersions = ../../Constants/DebianVersions.dhall

let Artifacts = ../../Constants/Artifacts.dhall

let Pipeline = ../../Pipeline/Dsl.dhall

let PipelineTag = ../../Pipeline/Tag.dhall

let PipelineScope = ../../Pipeline/Scope.dhall

let Network = ../../Constants/Network.dhall

in Pipeline.build
( ArtifactPipelines.pipeline
ArtifactPipelines.MinaBuildSpec::{
, artifacts =
[ Artifacts.Type.Daemon
, Artifacts.Type.LogProc
, Artifacts.Type.Archive
, Artifacts.Type.Rosetta
, Artifacts.Type.ZkappTestTransaction
, Artifacts.Type.CreateLegacyGenesis
]
, network = Network.Type.Mesa
, tags =
[ PipelineTag.Type.Long
, PipelineTag.Type.Release
, PipelineTag.Type.Docker
, PipelineTag.Type.Amd64
, PipelineTag.Type.Bookworm
, PipelineTag.Type.Devnet
]
, debVersion = DebianVersions.DebVersion.Bookworm
, scope =
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
}
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
let ArtifactPipelines = ../../Command/MinaArtifact.dhall

let DebianVersions = ../../Constants/DebianVersions.dhall

let Artifacts = ../../Constants/Artifacts.dhall

let Pipeline = ../../Pipeline/Dsl.dhall

let PipelineTag = ../../Pipeline/Tag.dhall

let PipelineScope = ../../Pipeline/Scope.dhall

let Network = ../../Constants/Network.dhall

let Arch = ../../Constants/Arch.dhall

in Pipeline.build
( ArtifactPipelines.pipeline
ArtifactPipelines.MinaBuildSpec::{
, artifacts =
[ Artifacts.Type.LogProc
, Artifacts.Type.Daemon
, Artifacts.Type.Archive
, Artifacts.Type.Rosetta
, Artifacts.Type.ZkappTestTransaction
, Artifacts.Type.CreateLegacyGenesis
]
, network = Network.Type.Mesa
, arch = Arch.Type.Arm64
, tags =
[ PipelineTag.Type.Long
, PipelineTag.Type.Release
, PipelineTag.Type.Docker
, PipelineTag.Type.Arm64
, PipelineTag.Type.Bookworm
, PipelineTag.Type.Devnet
]
, debVersion = DebianVersions.DebVersion.Bookworm
, scope =
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
}
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
let ArtifactPipelines = ../../Command/MinaArtifact.dhall

let DebianVersions = ../../Constants/DebianVersions.dhall

let Artifacts = ../../Constants/Artifacts.dhall

let Pipeline = ../../Pipeline/Dsl.dhall

let PipelineTag = ../../Pipeline/Tag.dhall

let PipelineScope = ../../Pipeline/Scope.dhall

let Network = ../../Constants/Network.dhall

let Profiles = ../../Constants/Profiles.dhall

in Pipeline.build
( ArtifactPipelines.pipeline
ArtifactPipelines.MinaBuildSpec::{
, artifacts = [ Artifacts.Type.LogProc, Artifacts.Type.Daemon ]
, network = Network.Type.Mesa
, profile = Profiles.Type.Lightnet
, tags =
[ PipelineTag.Type.Long
, PipelineTag.Type.Release
, PipelineTag.Type.Docker
, PipelineTag.Type.Amd64
, PipelineTag.Type.Bookworm
, PipelineTag.Type.Lightnet
]
, debVersion = DebianVersions.DebVersion.Bookworm
, scope =
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
}
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
let ArtifactPipelines = ../../Command/MinaArtifact.dhall

let DebianVersions = ../../Constants/DebianVersions.dhall

let Artifacts = ../../Constants/Artifacts.dhall

let Pipeline = ../../Pipeline/Dsl.dhall

let PipelineTag = ../../Pipeline/Tag.dhall

let PipelineScope = ../../Pipeline/Scope.dhall

let Network = ../../Constants/Network.dhall

let Arch = ../../Constants/Arch.dhall

let Profiles = ../../Constants/Profiles.dhall

in Pipeline.build
( ArtifactPipelines.pipeline
ArtifactPipelines.MinaBuildSpec::{
, artifacts = [ Artifacts.Type.LogProc, Artifacts.Type.Daemon ]
, network = Network.Type.Mesa
, arch = Arch.Type.Arm64
, profile = Profiles.Type.Lightnet
, tags =
[ PipelineTag.Type.Long
, PipelineTag.Type.Release
, PipelineTag.Type.Docker
, PipelineTag.Type.Arm64
, PipelineTag.Type.Bookworm
, PipelineTag.Type.Lightnet
]
, debVersion = DebianVersions.DebVersion.Bookworm
, scope =
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
}
)
32 changes: 32 additions & 0 deletions buildkite/src/Jobs/Release/MinaArtifactNobleMesaDevnet.dhall
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
let ArtifactPipelines = ../../Command/MinaArtifact.dhall

let DebianVersions = ../../Constants/DebianVersions.dhall

let Artifacts = ../../Constants/Artifacts.dhall

let Pipeline = ../../Pipeline/Dsl.dhall

let PipelineTag = ../../Pipeline/Tag.dhall

let PipelineScope = ../../Pipeline/Scope.dhall

let Network = ../../Constants/Network.dhall

in Pipeline.build
( ArtifactPipelines.pipeline
ArtifactPipelines.MinaBuildSpec::{
, artifacts =
[ Artifacts.Type.Daemon
, Artifacts.Type.LogProc
, Artifacts.Type.Archive
, Artifacts.Type.Rosetta
, Artifacts.Type.ZkappTestTransaction
, Artifacts.Type.CreateLegacyGenesis
]
, network = Network.Type.Mesa
, tags = [] : List PipelineTag.Type
Copy link
Member

@glyh glyh Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why cleaned all tags here and couple of other places?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to disable such jobs.

, debVersion = DebianVersions.DebVersion.Noble
, scope =
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
}
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
let ArtifactPipelines = ../../Command/MinaArtifact.dhall

let DebianVersions = ../../Constants/DebianVersions.dhall

let Artifacts = ../../Constants/Artifacts.dhall

let Pipeline = ../../Pipeline/Dsl.dhall

let PipelineTag = ../../Pipeline/Tag.dhall

let PipelineScope = ../../Pipeline/Scope.dhall

let Network = ../../Constants/Network.dhall

let Arch = ../../Constants/Arch.dhall

in Pipeline.build
( ArtifactPipelines.pipeline
ArtifactPipelines.MinaBuildSpec::{
, artifacts =
[ Artifacts.Type.LogProc
, Artifacts.Type.Daemon
, Artifacts.Type.Archive
, Artifacts.Type.Rosetta
, Artifacts.Type.ZkappTestTransaction
, Artifacts.Type.CreateLegacyGenesis
]
, network = Network.Type.Mesa
, arch = Arch.Type.Arm64
, tags =
[ PipelineTag.Type.Long
, PipelineTag.Type.Release
, PipelineTag.Type.Docker
, PipelineTag.Type.Arm64
, PipelineTag.Type.Noble
]
, debVersion = DebianVersions.DebVersion.Noble
, scope =
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
}
)
34 changes: 34 additions & 0 deletions buildkite/src/Jobs/Release/MinaArtifactNobleMesaLightnet.dhall
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
let ArtifactPipelines = ../../Command/MinaArtifact.dhall

let DebianVersions = ../../Constants/DebianVersions.dhall

let Artifacts = ../../Constants/Artifacts.dhall

let Pipeline = ../../Pipeline/Dsl.dhall

let PipelineTag = ../../Pipeline/Tag.dhall

let PipelineScope = ../../Pipeline/Scope.dhall

let Network = ../../Constants/Network.dhall

let Profiles = ../../Constants/Profiles.dhall

in Pipeline.build
( ArtifactPipelines.pipeline
ArtifactPipelines.MinaBuildSpec::{
, artifacts = [ Artifacts.Type.LogProc, Artifacts.Type.Daemon ]
, network = Network.Type.Mesa
, profile = Profiles.Type.Lightnet
, tags =
[ PipelineTag.Type.Long
, PipelineTag.Type.Release
, PipelineTag.Type.Docker
, PipelineTag.Type.Amd64
, PipelineTag.Type.Noble
]
, debVersion = DebianVersions.DebVersion.Noble
, scope =
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
}
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
let ArtifactPipelines = ../../Command/MinaArtifact.dhall

let DebianVersions = ../../Constants/DebianVersions.dhall

let Artifacts = ../../Constants/Artifacts.dhall

let Pipeline = ../../Pipeline/Dsl.dhall

let PipelineTag = ../../Pipeline/Tag.dhall

let PipelineScope = ../../Pipeline/Scope.dhall

let Network = ../../Constants/Network.dhall

let Arch = ../../Constants/Arch.dhall

let Profiles = ../../Constants/Profiles.dhall

in Pipeline.build
( ArtifactPipelines.pipeline
ArtifactPipelines.MinaBuildSpec::{
, artifacts = [ Artifacts.Type.LogProc, Artifacts.Type.Daemon ]
, network = Network.Type.Mesa
, arch = Arch.Type.Arm64
, profile = Profiles.Type.Lightnet
, tags =
[ PipelineTag.Type.Long
, PipelineTag.Type.Release
, PipelineTag.Type.Docker
, PipelineTag.Type.Arm64
, PipelineTag.Type.Noble
]
, debVersion = DebianVersions.DebVersion.Noble
, scope =
[ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ]
}
)
24 changes: 24 additions & 0 deletions buildkite/src/Jobs/Test/RosettaMesaConnect.dhall
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
let Pipeline = ../../Pipeline/Dsl.dhall

let PipelineScope = ../../Pipeline/Scope.dhall

let Network = ../../Constants/Network.dhall

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

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

let PipelineTag = ../../Pipeline/Tag.dhall

let Profiles = ../../Constants/Profiles.dhall

in Pipeline.build
( Connectivity.pipeline
Connectivity.Spec::{
, network = Network.Type.Mesa
, scope = PipelineScope.AllButPullRequest
, extraTags = [ PipelineTag.Type.Mesa ]
, dockerType = Dockers.Type.Bookworm
, profile = Profiles.Type.Devnet
}
)
Loading