Add support for minioreleaser a fork for goreleaser (#9890)

This is to support building containers for multiple
platforms, rpms and debs all in a single build process

https://github.com/harshavardhana/minioreleaser
This commit is contained in:
Harshavardhana
2020-06-22 08:26:40 -07:00
committed by GitHub
parent 0fff9f9fa6
commit c54e3b4ea3
9 changed files with 251 additions and 67 deletions

View File

@@ -1,5 +1,5 @@
/*
* MinIO Cloud Storage, (C) 2015, 2016 MinIO, Inc.
* MinIO Cloud Storage, (C) 2015-2020 MinIO, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -25,15 +25,15 @@ var (
// GOROOT - GOROOT value at the time of build.
GOROOT = ""
// Go get development tag.
goGetTag = "DEVELOPMENT.GOGET"
// Version - version time.RFC3339.
Version = goGetTag
Version = "DEVELOPMENT.GOGET"
// ReleaseTag - release tag in TAG.%Y-%m-%dT%H-%M-%SZ.
ReleaseTag = goGetTag
ReleaseTag = "DEVELOPMENT.GOGET"
// CommitID - latest commit id.
CommitID = goGetTag
CommitID = "DEVELOPMENT.GOGET"
// ShortCommitID - first 12 characters from CommitID.
ShortCommitID = CommitID[:12]
ShortCommitID = "DEVELOPMENT.GOGET"
)