From 68f54d8925b7d61ad87796054813362f5e174130 Mon Sep 17 00:00:00 2001 From: Pietro Abate Date: Tue, 23 Apr 2024 11:50:55 +0200 Subject: [PATCH] packaging: add octez experimental debian package --- scripts/packaging/octez/debian/control | 15 +++++++++++++++ .../octez/debian/octez-experimental.install | 3 +++ 2 files changed, 18 insertions(+) create mode 100644 scripts/packaging/octez/debian/octez-experimental.install diff --git a/scripts/packaging/octez/debian/control b/scripts/packaging/octez/debian/control index 398b4524d54c..4c1636bc789e 100644 --- a/scripts/packaging/octez/debian/control +++ b/scripts/packaging/octez/debian/control @@ -79,3 +79,18 @@ Description: Octez signer . This package installs the Octez remote signer. It's recommended to run the signer and the baker on different hosts and use a hardware ledger for key management. + +Package: octez-experimental +Architecture: amd64 arm64 +Depends: ${misc:Depends}, ${shlibs:Depends}, +Description: Octez experimental binaries + This package is a collection of debug and experimental binaries from the + octez software suite. + . + This package installs: + - octez-snoop: is a tool for benchmarking and fitting statistical models + which predict the performance of any piece of code of interest. + - octez-smart-rollup-wasm-debugger: runs Smart Rollups in debug mode to + make it easier to test and observe them. + - octez-protocol-compiler: used by the node to compile new protocols on + the fly, and that can be used for developing new protocols. diff --git a/scripts/packaging/octez/debian/octez-experimental.install b/scripts/packaging/octez/debian/octez-experimental.install new file mode 100644 index 000000000000..6180200f51fe --- /dev/null +++ b/scripts/packaging/octez/debian/octez-experimental.install @@ -0,0 +1,3 @@ +binaries/octez-protocol-compiler /usr/bin +binaries/octez-smart-rollup-wasm-debugger /usr/bin +binaries/octez-snoop /usr/bin -- GitLab