mirror of https://github.com/v2ray/v2ray-core
parent
3a8eef2dec
commit
ab78b5a17e
@ -1,58 +0,0 @@
|
||||
package git
|
||||
|
||||
import (
|
||||
"os"
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
)
|
||||
|
||||
const (
|
||||
VersionUndefined = "undefined"
|
||||
)
|
||||
|
||||
func getRepoRoot() string {
|
||||
GOPATH := os.Getenv("GOPATH")
|
||||
return filepath.Join(GOPATH, "src", "v2ray.com", "core")
|
||||
}
|
||||
|
||||
func RevParse(args ...string) (string, error) {
|
||||
args = append([]string{"rev-parse"}, args...)
|
||||
cmd := exec.Command("git", args...)
|
||||
cmd.Dir = getRepoRoot()
|
||||
output, err := cmd.Output()
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
return strings.TrimSpace(string(output)), nil
|
||||
}
|
||||
|
||||
func NameRev(args ...string) (string, error) {
|
||||
args = append([]string{"name-rev"}, args...)
|
||||
cmd := exec.Command("git", args...)
|
||||
cmd.Dir = getRepoRoot()
|
||||
output, err := cmd.Output()
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
return strings.TrimSpace(string(output)), nil
|
||||
}
|
||||
|
||||
func RepoVersion(rev string) (string, error) {
|
||||
rev, err := RevParse(rev)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
version, err := NameRev("name-rev", "--tags", "--name-only", rev)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
if strings.HasSuffix(version, "^0") {
|
||||
version = version[:len(version)-2]
|
||||
}
|
||||
return version, nil
|
||||
}
|
||||
|
||||
func RepoVersionHead() (string, error) {
|
||||
return RepoVersion("HEAD")
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
package git
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"v2ray.com/core/testing/assert"
|
||||
)
|
||||
|
||||
func TestRevParse(t *testing.T) {
|
||||
assert := assert.On(t)
|
||||
|
||||
rev, err := RevParse("HEAD")
|
||||
assert.Error(err).IsNil()
|
||||
assert.Int(len(rev)).GreaterThan(0)
|
||||
}
|
||||
|
||||
func TestRepoVersion(t *testing.T) {
|
||||
assert := assert.On(t)
|
||||
|
||||
version, err := RepoVersionHead()
|
||||
assert.Error(err).IsNil()
|
||||
assert.Int(len(version)).GreaterThan(0)
|
||||
}
|
Loading…
Reference in new issue