560826d5c6
* deps: update dependencies to address migration memory bloat to address memory concerns during a heavy migration Ref: https://github.com/filecoin-project/go-state-types/pull/260 Ref: https://github.com/whyrusleeping/cbor-gen/pull/96 Ref: https://github.com/filecoin-project/go-amt-ipld/pull/90 * release: prep v1.26.3 patch Prep v1.26.3 patch release: - Update changelog, version and make gen + make docsgen-cli * deps: update cbor-gen to tagged version deps: update cbor-gen to tagged version * deps: update go-state-types to tagged version deps: update go-state-types to tagged version v0.13.2 * chore: deps: update go-state-types to v0.13.3 Fixes a panic when we have fewer than 1k proposals. --------- Co-authored-by: Rod Vagg <rod@vagg.org> Co-authored-by: Steven Allen <steven@stebalien.com>
49 lines
858 B
Go
49 lines
858 B
Go
package build
|
|
|
|
import "os"
|
|
|
|
var CurrentCommit string
|
|
var BuildType int
|
|
|
|
const (
|
|
BuildDefault = 0
|
|
BuildMainnet = 0x1
|
|
Build2k = 0x2
|
|
BuildDebug = 0x3
|
|
BuildCalibnet = 0x4
|
|
BuildInteropnet = 0x5
|
|
BuildButterflynet = 0x7
|
|
)
|
|
|
|
func BuildTypeString() string {
|
|
switch BuildType {
|
|
case BuildDefault:
|
|
return ""
|
|
case BuildMainnet:
|
|
return "+mainnet"
|
|
case Build2k:
|
|
return "+2k"
|
|
case BuildDebug:
|
|
return "+debug"
|
|
case BuildCalibnet:
|
|
return "+calibnet"
|
|
case BuildInteropnet:
|
|
return "+interopnet"
|
|
case BuildButterflynet:
|
|
return "+butterflynet"
|
|
default:
|
|
return "+huh?"
|
|
}
|
|
}
|
|
|
|
// BuildVersion is the local build version
|
|
const BuildVersion = "1.26.3"
|
|
|
|
func UserVersion() string {
|
|
if os.Getenv("LOTUS_VERSION_IGNORE_COMMIT") == "1" {
|
|
return BuildVersion
|
|
}
|
|
|
|
return BuildVersion + BuildTypeString() + CurrentCommit
|
|
}
|