-
Notifications
You must be signed in to change notification settings - Fork 584
CI for mesa #18130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dkijania
wants to merge
7
commits into
mesa
Choose a base branch
from
ci_for_mesa
base: mesa
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
CI for mesa #18130
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6455b12
add mesa related jobs
dkijania 7e38212
add mesa related constants
dkijania e6cdaca
added mesa genesis ledger
dkijania cbf7a2b
Port fix for archive node test
dkijania a799e6e
regenerate data for sample db
dkijania e5cc63f
add mesa debians
dkijania aef069e
add missing jobs
dkijania File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
buildkite/src/Jobs/Release/MinaArtifactBookwormMesaDevnet.dhall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ] | ||
| } | ||
| ) |
42 changes: 42 additions & 0 deletions
42
buildkite/src/Jobs/Release/MinaArtifactBookwormMesaDevnetArm64.dhall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ] | ||
| } | ||
| ) |
35 changes: 35 additions & 0 deletions
35
buildkite/src/Jobs/Release/MinaArtifactBookwormMesaLightnet.dhall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ] | ||
| } | ||
| ) |
38 changes: 38 additions & 0 deletions
38
buildkite/src/Jobs/Release/MinaArtifactBookwormMesaLightnetArm64.dhall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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
32
buildkite/src/Jobs/Release/MinaArtifactNobleMesaDevnet.dhall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| , debVersion = DebianVersions.DebVersion.Noble | ||
| , scope = | ||
| [ PipelineScope.Type.MainlineNightly, PipelineScope.Type.Release ] | ||
| } | ||
| ) | ||
41 changes: 41 additions & 0 deletions
41
buildkite/src/Jobs/Release/MinaArtifactNobleMesaDevnetArm64.dhall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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
34
buildkite/src/Jobs/Release/MinaArtifactNobleMesaLightnet.dhall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ] | ||
| } | ||
| ) |
37 changes: 37 additions & 0 deletions
37
buildkite/src/Jobs/Release/MinaArtifactNobleMesaLightnetArm64.dhall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ] | ||
| } | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| } | ||
| ) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to disable such jobs.