mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-01-19 05:45:21 +01:00
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:
commit
d45675d469
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -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:
|
||||
########################
|
||||
|
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
@ -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:
|
||||
|
@ -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.
|
||||
|
2
Makefile
2
Makefile
@ -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")
|
||||
|
@ -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() {
|
||||
|
@ -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>"
|
||||
|
||||
|
@ -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>"
|
||||
|
||||
|
@ -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>"
|
||||
|
||||
|
@ -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
|
||||
|
@ -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 \
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user