Skip to content

Commit

Permalink
[#453] Add rollup packages to static build
Browse files Browse the repository at this point in the history
  • Loading branch information
krendelhoff2 committed Aug 30, 2022
1 parent 6619fcb commit 842441d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/docker-static-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set -euo pipefail
binaries=("tezos-admin-client" "tezos-client" "tezos-node" "tezos-signer" "tezos-codec")

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

if [[ "${USE_PODMAN-}" == "True" ]]; then
Expand Down
10 changes: 10 additions & 0 deletions nix/build/release-binaries.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,14 @@ in [
description = "Daemon for accusing";
supports = protocol;
}
{
name = "tezos-tx-rollup-node-${protocol}";
description = "Transaction rollup node";
supports = protocol;
}
{
name = "tezos-tx-rollup-client-${protocol}";
description = "Client for interacting with transaction rollup node";
supports = protocol;
}
]) protocols.active

0 comments on commit 842441d

Please sign in to comment.