From 8491d0da433c23051b723f4c018e2f041df548c8 Mon Sep 17 00:00:00 2001 From: carla Date: Fri, 18 Jun 2021 09:15:51 +0200 Subject: [PATCH] multi: enable monitoring build by default The monitoring server still needs to be enabled using prometheus.enable, so including this in the default build does not add an additional http server unless the user opts in. --- .github/workflows/release.yaml | 2 +- make/release_flags.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c37ed9c6..fde41f5f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -95,7 +95,7 @@ jobs: Our release binaries are fully reproducible. Third parties are able to verify that the release binaries were produced properly without having to trust the release manager(s). See our [reproducible builds guide](https://github.com/lightningnetwork/lnd/tree/master/build/release) for how this can be achieved. The release binaries are compiled with `go${{ env.GO_VERSION }}`, which is required by verifiers to arrive at the same ones. - They include the following build tags: `autopilotrpc`, `signrpc`, `walletrpc`, `chainrpc`, `invoicesrpc`, `routerrpc`, and `watchtowerrpc`. Note that these are already included in the release script, so they do not need to be provided. + They include the following build tags: `autopilotrpc`, `signrpc`, `walletrpc`, `chainrpc`, `invoicesrpc`, `routerrpc`, `watchtowerrpc` and `monitoring`. Note that these are already included in the release script, so they do not need to be provided. The `make release` command can be used to ensure one rebuilds with all the same flags used for the release. If one wishes to build for only a single platform, then `make release sys= tag=` can be used. diff --git a/make/release_flags.mk b/make/release_flags.mk index b67e4717..8eb4adf5 100644 --- a/make/release_flags.mk +++ b/make/release_flags.mk @@ -38,7 +38,7 @@ windows-386 \ windows-amd64 \ windows-arm -RELEASE_TAGS = autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc +RELEASE_TAGS = autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc monitoring # One can either specify a git tag as the version suffix or one is generated # from the current date.