Skip to content
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

Add execution timing metrics for participation code #10158

Merged
merged 8 commits into from
Mar 18, 2022
Merged
Show file tree
Hide file tree
Changes from 7 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
8 changes: 4 additions & 4 deletions buildkite/src/Constants/ContainerImages.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
-- NOTE: minaToolchainStretch is also used for building Ubuntu Bionic packages in CI
{
toolchainBase = "codaprotocol/ci-toolchain-base:v3",
minaToolchainStretch = "gcr.io/o1labs-192920/mina-toolchain@sha256:c4873c52041996a4eacdd96d0310b909a099689552c8b4fec7d464872abd1e1f",
minaToolchainBuster = "gcr.io/o1labs-192920/mina-toolchain@sha256:b53c4948599ec40ec1ce9178d84ce48e88db472da0005b9a6b4260e0d4aaa95c",
minaToolchainBullseye = "gcr.io/o1labs-192920/mina-toolchain@sha256:00dbcb936954f10b4995ad28535d08e32d6d2dbc31531e846307d156e610af04",
minaToolchainFocal = "gcr.io/o1labs-192920/mina-toolchain@sha256:ad94c2373f45a8a5af354ed12d5eb34ad64b1140c0811a9935212ea0a5d3c4b0",
minaToolchainStretch = "gcr.io/o1labs-192920/mina-toolchain@sha256:355fa42286d07a042f670beba3c1f4da67099b79e104a117f2c8be062d618726",
minaToolchainBuster = "gcr.io/o1labs-192920/mina-toolchain@sha256:15b1c431e93ba3f7d7b4c6e070d53bbab667b5ccd60cc515a6a9d58f7a21d3c6",
minaToolchainBullseye = "gcr.io/o1labs-192920/mina-toolchain@sha256:f3294b5803a87a5f305c279598fa8b9b90b4235e543cd316984bd59936e459e8",
minaToolchainFocal = "gcr.io/o1labs-192920/mina-toolchain@sha256:8b809e5f2fc19d13e0896927470909c11c4a559d88accc889de9f8bd18bda8af",
delegationBackendToolchain = "gcr.io/o1labs-192920/delegation-backend-production@sha256:8ca5880845514ef56a36bf766a0f9de96e6200d61b51f80d9f684a0ec9c031f4",
elixirToolchain = "elixir:1.10-alpine",
rustToolchain = "codaprotocol/coda:toolchain-rust-e855336d087a679f76f2dd2bbdc3fdfea9303be3",
Expand Down
1 change: 1 addition & 0 deletions buildkite/src/Jobs/Release/MinaToolchainArtifact.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,4 @@ Pipeline.build

]
}

17 changes: 17 additions & 0 deletions graphql_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9708,6 +9708,23 @@
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "threadGraph",
"description":
"A graphviz dot format representation of the deamon's internal thread graph",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "String",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
}
],
"inputFields": null,
Expand Down
2 changes: 1 addition & 1 deletion scripts/pin-external-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# update and pin packages, used by CI

PACKAGES="ocaml-sodium capnp-ocaml rpc_parallel ocaml-extlib async_kernel coda_base58 graphql_ppx ppx_deriving_yojson"
PACKAGES="ocaml-sodium capnp-ocaml rpc_parallel ocaml-extlib async_kernel async_unix coda_base58 graphql_ppx ppx_deriving_yojson"

git submodule sync && git submodule update --init --recursive

Expand Down
Loading