Merge pull request #5985 from Roasbeef/0-14-rc4

multi: bump version to v0.14.0-beta.rc4, include postgres+etcd in release build
This commit is contained in:
Olaoluwa Osuntokun 2021-11-15 19:58:25 -08:00 committed by GitHub
commit d45675d469
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 15 additions and 12 deletions

View File

@ -24,7 +24,7 @@ env:
# /dev.Dockerfile
# /make/builder.Dockerfile
# /.github/workflows/release.yml
GO_VERSION: 1.17.1
GO_VERSION: 1.17.3
jobs:
########################

View File

@ -16,7 +16,7 @@ env:
# /dev.Dockerfile
# /make/builder.Dockerfile
# /.github/workflows/main.yml
GO_VERSION: 1.17.1
GO_VERSION: 1.17.3
jobs:
main:

View File

@ -4,7 +4,7 @@
# /make/builder.Dockerfile
# /.github/workflows/main.yml
# /.github/workflows/release.yml
FROM golang:1.17.1-alpine as builder
FROM golang:1.17.3-alpine as builder
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
# queries required to connect to linked containers succeed.

View File

@ -306,7 +306,7 @@ rpc-check: rpc
rpc-js-compile:
@$(call print, "Compiling JSON/WASM stubs.")
GOOS=js GOARCH=wasm $(GOBUILD) -tags="$(RELEASE_TAGS)" $(PKG)/lnrpc/...
GOOS=js GOARCH=wasm $(GOBUILD) -tags="$(WASM_RELEASE_TAGS)" $(PKG)/lnrpc/...
sample-conf-check:
@$(call print, "Making sure every flag has an example in the sample-lnd.conf file")

View File

@ -48,7 +48,7 @@ const (
// AppPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec.
AppPreRelease = "beta.rc3"
AppPreRelease = "beta.rc4"
)
func init() {

View File

@ -4,7 +4,7 @@
# /make/builder.Dockerfile
# /.github/workflows/main.yml
# /.github/workflows/release.yml
FROM golang:1.17.1-alpine as builder
FROM golang:1.17.3-alpine as builder
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"

View File

@ -1,4 +1,4 @@
FROM golang:1.17.1-alpine as builder
FROM golang:1.17.3-alpine as builder
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"

View File

@ -1,4 +1,4 @@
FROM golang:1.17.1-alpine as builder
FROM golang:1.17.3-alpine as builder
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"

View File

@ -281,6 +281,8 @@ messages directly. There is no routing/path finding involved.
## Build System
* [The illumos operating system has been dropped from the set of release binaries. We now also build with postgres and etcd in the main release binaries](https://github.com/lightningnetwork/lnd/pull/5985).
* [A new pre-submit check has been
added](https://github.com/lightningnetwork/lnd/pull/5520) to ensure that all
PRs ([aside from merge

View File

@ -1,4 +1,4 @@
FROM golang:1.17.1-buster
FROM golang:1.17.3-buster
RUN apt-get update && apt-get install -y \
git \

View File

@ -4,7 +4,7 @@
# /dev.Dockerfile
# /.github/workflows/main.yml
# /.github/workflows/release.yml
FROM golang:1.17.1-buster
FROM golang:1.17.3-buster
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>

View File

@ -17,7 +17,6 @@ dragonfly-amd64 \
freebsd-386 \
freebsd-amd64 \
freebsd-arm \
illumos-amd64 \
linux-386 \
linux-amd64 \
linux-armv6 \
@ -38,7 +37,9 @@ windows-386 \
windows-amd64 \
windows-arm
RELEASE_TAGS = autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc monitoring
RELEASE_TAGS = autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc monitoring kvdb_postgres kvdb_etcd
WASM_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.