https://gitlab.com/tezos/tezos
Raw File
Tip revision: 4a1327d0ebf970febbac6acce4099a9eb5329df3 authored by Romain Bardou on 16 June 2020, 08:22:11 UTC
DEPRECATED - use branch latest-release instead
Tip revision: 4a1327d
dune
(executable
 (name main)
 (public_name tezos-node)
 (libraries tezos-base
            tezos-version
            tezos-stdlib-unix
            tezos-shell-services
            tezos-rpc-http-server
            tezos-p2p
            tezos-shell
            tezos-storage
            tezos-validator
            tezos-shell-context
            tezos-protocol-updater
            tezos-embedded-protocol-genesis
            tezos-embedded-protocol-demo-noops
            tezos-embedded-protocol-005-PsBabyM1
            tezos-embedded-protocol-006-PsCARTHA
            cmdliner
            tls)
 (flags (:standard -open Tezos_base__TzPervasives
                   -open Tezos_stdlib_unix
                   -open Tezos_shell_services
                   -open Tezos_rpc_http
                   -open Tezos_rpc_http_server
                   -open Tezos_p2p
                   -open Tezos_shell
                   -open Tezos_storage
                   -open Tezos_validator
                   -open Tezos_shell_context
                   -open Tezos_protocol_updater
                   -linkall)))

(install
 (section bin)
 (files (tezos-sandboxed-node.sh as tezos-sandboxed-node.sh)))

(alias
 (name runtest_lint)
 (deps (glob_files *.ml{,i}))
 (action (run %{lib:tezos-tooling:lint.sh} %{deps})))
back to top