Skip to content

Commit

Permalink
Merge pull request #594 from serokell/pasqu4le/chore-hotfix-v16.0-rc1
Browse files Browse the repository at this point in the history
[Chore] Hotfixes for v16.0 rc1
  • Loading branch information
pasqu4le authored Jan 23, 2023
2 parents f1f5956 + 18d8d62 commit 27cfb89
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 12 deletions.
1 change: 1 addition & 0 deletions .buildkite/pipeline-raw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ steps:
- mkdir arm-binaries
- buildkite-agent artifact download "docker/*" binaries --step "build-via-docker"
# - buildkite-agent artifact download "docker/*" arm-binaries --step "build-arm-via-docker"
- mkdir arm-binaries/docker
- ls binaries
- nix develop .#autorelease -c ./scripts/autorelease.sh "$BUILDKITE_MESSAGE"
branches: master
Expand Down
3 changes: 2 additions & 1 deletion docker/docker-static-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ set -euo pipefail
binaries=("octez-admin-client" "octez-client" "octez-node" "octez-signer" "octez-codec")

for proto in $(jq -r ".active | .[]" ../protocols.json); do
binaries+=("octez-accuser-$proto" "octez-baker-$proto" "octez-tx-rollup-node-$proto" "octez-tx-rollup-client-$proto")
binaries+=("octez-accuser-$proto" "octez-baker-$proto")
done

binaries+=("octez-tx-rollup-node-PtLimaPt" "octez-tx-rollup-client-PtLimaPt")
binaries+=("octez-smart-rollup-client-PtMumbai" "octez-smart-rollup-node-PtMumbai")

if [[ "${USE_PODMAN-}" == "True" ]]; then
Expand Down
30 changes: 20 additions & 10 deletions nix/build/release-binaries.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,26 @@ in [
description = "A client to decode and encode JSON";
supports = protocolsFormatted;
}
{
name = "octez-tx-rollup-node-PtLimaPt";
description = "Transaction rollup node";
supports = "PtLimaPt";
}
{
name = "octez-tx-rollup-client-PtLimaPt";
description = "Client for interacting with transaction rollup node";
supports = "PtLimaPt";
}
{
name = "octez-smart-rollup-client-PtMumbai";
description = "Smart contract rollup CLI client for PtMumbai";
supports = "PtMumbai";
}
{
name = "octez-smart-rollup-node-PtMumbai";
description = "Tezos smart contract rollup node for PtMumbai";
supports = "PtMumbai";
}
] ++ builtins.concatMap (protocol: [
{
name = "octez-baker-${protocol}";
Expand All @@ -43,14 +63,4 @@ in [
description = "Daemon for accusing";
supports = protocol;
}
{
name = "octez-tx-rollup-node-${protocol}";
description = "Transaction rollup node";
supports = protocol;
}
{
name = "octez-tx-rollup-client-${protocol}";
description = "Client for interacting with transaction rollup node";
supports = protocol;
}
]) protocols.active
3 changes: 2 additions & 1 deletion protocols.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"PtKathma"
],
"active": [
"PtLimaPt"
"PtLimaPt",
"PtMumbai"
]
}

0 comments on commit 27cfb89

Please sign in to comment.