gopl-zh.github.com/update_version.go

73 lines
1.5 KiB
Go
Raw Normal View History

2016-02-01 02:16:15 +00:00
// Copyright 2015 <chaishushan{AT}gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build ingore
// 更新版本信息
package main
import (
"fmt"
"io/ioutil"
"log"
"os/exec"
"strings"
"time"
)
func main() {
2016-02-01 02:30:44 +00:00
version := getGitCommitVersion()
data := makeVersionMarkdown(version)
2016-02-01 02:16:15 +00:00
err := ioutil.WriteFile("./version.md", []byte(data), 0666)
if err != nil {
log.Fatalf("ioutil.WriteFile: err = %v", err)
}
2016-02-01 02:30:44 +00:00
fmt.Println("build version", version)
2016-02-01 02:16:15 +00:00
}
// 生成版本文件
2016-02-01 02:30:44 +00:00
func makeVersionMarkdown(version string) string {
2016-02-01 02:16:15 +00:00
buildTime := time.Now().Format("2006-01-02")
return fmt.Sprintf(`
2016-02-02 07:27:02 +00:00
<!-- md -->
2016-02-01 02:16:15 +00:00
###
2016-02-15 03:19:31 +00:00
- %s
2016-02-01 02:16:15 +00:00
- %s
`,
2016-02-15 03:19:31 +00:00
version,
2016-02-01 02:16:15 +00:00
buildTime,
)
}
// 获取Git最新的版本号
//
2016-02-02 07:27:02 +00:00
// git log -1
2016-02-01 02:16:15 +00:00
// commit 0460c1b3bb8fbb7e2fc88961e69aa37f4041d6c1
// Merge: b2d582a e826457
2016-02-01 02:30:44 +00:00
// Author: chai2010 <chaishushan{AT}gmail.com>
2016-02-01 02:16:15 +00:00
// Date: Mon Feb 1 08:04:44 2016 +0800
//
// Merge pull request #249 from sunclx/patch-3
//
// fix typo
func getGitCommitVersion() (version string) {
2016-02-02 07:27:02 +00:00
cmdOut, err := exec.Command(`git`, `log`, `-1`).CombinedOutput()
2016-02-01 02:16:15 +00:00
if err != nil {
2016-02-01 02:30:44 +00:00
return "master"
2016-02-01 02:16:15 +00:00
}
for _, line := range strings.Split(string(cmdOut), "\n") {
line := strings.TrimSpace(line)
if strings.HasPrefix(line, "commit") {
version = strings.TrimSpace(line[len("commit"):])
return
}
}
return "master"
}