mirror of
https://github.com/restic/restic.git
synced 2025-04-03 03:25:43 +00:00
Merge pull request #5304 from restic/disable-gs-grpc-api
backend/gs: disable GRPC API to reduce binary size bloat
This commit is contained in:
commit
c4eb2be31f
14
build.go
14
build.go
@ -53,12 +53,14 @@ import (
|
|||||||
|
|
||||||
// config contains the configuration for the program to build.
|
// config contains the configuration for the program to build.
|
||||||
var config = Config{
|
var config = Config{
|
||||||
Name: "restic", // name of the program executable and directory
|
Name: "restic", // name of the program executable and directory
|
||||||
Namespace: "github.com/restic/restic", // subdir of GOPATH, e.g. "github.com/foo/bar"
|
Namespace: "github.com/restic/restic", // subdir of GOPATH, e.g. "github.com/foo/bar"
|
||||||
Main: "./cmd/restic", // package name for the main package
|
Main: "./cmd/restic", // package name for the main package
|
||||||
DefaultBuildTags: []string{"selfupdate"}, // specify build tags which are always used
|
// disable_grpc_modules is necessary to reduce the binary size since cloud.google.com/go/storage v1.44.0
|
||||||
Tests: []string{"./..."}, // tests to run
|
// see https://github.com/googleapis/google-cloud-go/issues/11448
|
||||||
MinVersion: GoVersion{Major: 1, Minor: 23, Patch: 0}, // minimum Go version supported
|
DefaultBuildTags: []string{"selfupdate", "disable_grpc_modules"}, // specify build tags which are always used
|
||||||
|
Tests: []string{"./..."}, // tests to run
|
||||||
|
MinVersion: GoVersion{Major: 1, Minor: 23, Patch: 0}, // minimum Go version supported
|
||||||
}
|
}
|
||||||
|
|
||||||
// Config configures the build.
|
// Config configures the build.
|
||||||
|
@ -106,7 +106,9 @@ func build(sourceDir, outputDir, goos, goarch string) (filename string) {
|
|||||||
}
|
}
|
||||||
outputFile := filepath.Join(outputDir, filename)
|
outputFile := filepath.Join(outputDir, filename)
|
||||||
|
|
||||||
tags := "selfupdate"
|
// disable_grpc_modules is necessary to reduce the binary size since cloud.google.com/go/storage v1.44.0
|
||||||
|
// see https://github.com/googleapis/google-cloud-go/issues/11448
|
||||||
|
tags := "selfupdate,disable_grpc_modules"
|
||||||
if opts.Tags != "" {
|
if opts.Tags != "" {
|
||||||
tags += "," + opts.Tags
|
tags += "," + opts.Tags
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user