UseDefaultTag for skip build if not default branch.
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
c591da7e86
commit
5fa26ebb5f
@ -246,11 +246,19 @@ func run(c *cli.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if c.Bool("tags.auto") {
|
if c.Bool("tags.auto") {
|
||||||
plugin.Build.Tags = docker.DefaultTagSuffix(
|
if docker.UseDefaultTag( // return true if not default branch, or not tag
|
||||||
c.String("commit.ref"),
|
c.String("commit.ref"),
|
||||||
c.String("repo.branch"),
|
c.String("repo.branch"),
|
||||||
c.String("tags.suffix"),
|
) {
|
||||||
)
|
plugin.Build.Tags = docker.DefaultTagSuffix(
|
||||||
|
c.String("commit.ref"),
|
||||||
|
c.String("tags.suffix"),
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
logrus.Printf("skipping automated docker build for %s", c.String("commit.ref"))
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return plugin.Exec()
|
return plugin.Exec()
|
||||||
|
18
docker.go
18
docker.go
@ -61,6 +61,24 @@ type (
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func stripHeadPrefix(ref string) string {
|
||||||
|
ref = strings.TrimPrefix(ref, "refs/heads/")
|
||||||
|
return ref
|
||||||
|
}
|
||||||
|
|
||||||
|
// UseDefaultTag for keep only default branch for latest tag
|
||||||
|
func UseDefaultTag(ref, defaultBranch string) bool {
|
||||||
|
if strings.HasPrefix(ref, "refs/tags/") {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
if stripHeadPrefix(ref) == defaultBranch {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
// Exec executes the plugin step
|
// Exec executes the plugin step
|
||||||
func (p Plugin) Exec() error {
|
func (p Plugin) Exec() error {
|
||||||
// start the Docker daemon server
|
// start the Docker daemon server
|
||||||
|
25
docker_test.go
Normal file
25
docker_test.go
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
package docker
|
||||||
|
|
||||||
|
import "testing"
|
||||||
|
|
||||||
|
func Test_stripHeadPrefix(t *testing.T) {
|
||||||
|
type args struct {
|
||||||
|
ref string
|
||||||
|
}
|
||||||
|
tests := []struct {
|
||||||
|
args args
|
||||||
|
want string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
args: args{
|
||||||
|
ref: "refs/heads/master",
|
||||||
|
},
|
||||||
|
want: "master",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for _, tt := range tests {
|
||||||
|
if got := stripHeadPrefix(tt.args.ref); got != tt.want {
|
||||||
|
t.Errorf("stripHeadPrefix() = %v, want %v", got, tt.want)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
19
tags.go
19
tags.go
@ -9,8 +9,8 @@ import (
|
|||||||
|
|
||||||
// DefaultTagSuffix returns a set of default suggested tags
|
// DefaultTagSuffix returns a set of default suggested tags
|
||||||
// based on the commit ref with an attached suffix.
|
// based on the commit ref with an attached suffix.
|
||||||
func DefaultTagSuffix(ref, defaultBranch, suffix string) []string {
|
func DefaultTagSuffix(ref, suffix string) []string {
|
||||||
tags := DefaultTags(ref, defaultBranch)
|
tags := DefaultTags(ref)
|
||||||
if len(suffix) == 0 {
|
if len(suffix) == 0 {
|
||||||
return tags
|
return tags
|
||||||
}
|
}
|
||||||
@ -26,18 +26,10 @@ func DefaultTagSuffix(ref, defaultBranch, suffix string) []string {
|
|||||||
|
|
||||||
// DefaultTags returns a set of default suggested tags based on
|
// DefaultTags returns a set of default suggested tags based on
|
||||||
// the commit ref.
|
// the commit ref.
|
||||||
func DefaultTags(ref, defaultBranch string) []string {
|
func DefaultTags(ref string) []string {
|
||||||
|
|
||||||
if defaultBranch != "" && strings.HasPrefix(ref, "refs/heads/") {
|
|
||||||
if stripHeadPrefix(ref) != defaultBranch {
|
|
||||||
return []string{}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if !strings.HasPrefix(ref, "refs/tags/") {
|
if !strings.HasPrefix(ref, "refs/tags/") {
|
||||||
return []string{"latest"}
|
return []string{"latest"}
|
||||||
}
|
}
|
||||||
|
|
||||||
v := stripTagPrefix(ref)
|
v := stripTagPrefix(ref)
|
||||||
version, err := semver.NewVersion(v)
|
version, err := semver.NewVersion(v)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -66,8 +58,3 @@ func stripTagPrefix(ref string) string {
|
|||||||
ref = strings.TrimPrefix(ref, "v")
|
ref = strings.TrimPrefix(ref, "v")
|
||||||
return ref
|
return ref
|
||||||
}
|
}
|
||||||
|
|
||||||
func stripHeadPrefix(ref string) string {
|
|
||||||
ref = strings.TrimPrefix(ref, "refs/heads/")
|
|
||||||
return ref
|
|
||||||
}
|
|
||||||
|
85
tags_test.go
85
tags_test.go
@ -25,29 +25,23 @@ func Test_stripTagPrefix(t *testing.T) {
|
|||||||
|
|
||||||
func TestDefaultTags(t *testing.T) {
|
func TestDefaultTags(t *testing.T) {
|
||||||
var tests = []struct {
|
var tests = []struct {
|
||||||
Before string
|
Before string
|
||||||
DefaultBranch string
|
After []string
|
||||||
After []string
|
|
||||||
}{
|
}{
|
||||||
{"", "master", []string{"latest"}},
|
{"", []string{"latest"}},
|
||||||
{"refs/heads/master", "master", []string{"latest"}},
|
{"refs/heads/master", []string{"latest"}},
|
||||||
{"refs/tags/0.9.0", "master", []string{"0.9", "0.9.0"}},
|
{"refs/tags/0.9.0", []string{"0.9", "0.9.0"}},
|
||||||
{"refs/tags/1.0.0", "master", []string{"1", "1.0", "1.0.0"}},
|
{"refs/tags/1.0.0", []string{"1", "1.0", "1.0.0"}},
|
||||||
{"refs/tags/v1.0.0", "master", []string{"1", "1.0", "1.0.0"}},
|
{"refs/tags/v1.0.0", []string{"1", "1.0", "1.0.0"}},
|
||||||
{"refs/tags/v1.0.0-alpha.1", "master", []string{"1.0.0-alpha.1"}},
|
{"refs/tags/v1.0.0-alpha.1", []string{"1.0.0-alpha.1"}},
|
||||||
|
|
||||||
// malformed or errors
|
// malformed or errors
|
||||||
{"refs/tags/x1.0.0", "master", []string{"latest"}},
|
{"refs/tags/x1.0.0", []string{"latest"}},
|
||||||
{"v1.0.0", "master", []string{"latest"}},
|
{"v1.0.0", []string{"latest"}},
|
||||||
|
|
||||||
// defualt branch
|
|
||||||
{"refs/heads/master", "master", []string{"latest"}},
|
|
||||||
{"refs/heads/test", "master", []string{}},
|
|
||||||
{"refs/tags/v1.0.0", "master", []string{"1", "1.0", "1.0.0"}},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
got, want := DefaultTags(test.Before, test.DefaultBranch), test.After
|
got, want := DefaultTags(test.Before), test.After
|
||||||
if !reflect.DeepEqual(got, want) {
|
if !reflect.DeepEqual(got, want) {
|
||||||
t.Errorf("Got tag %v, want %v", got, want)
|
t.Errorf("Got tag %v, want %v", got, want)
|
||||||
}
|
}
|
||||||
@ -56,19 +50,16 @@ func TestDefaultTags(t *testing.T) {
|
|||||||
|
|
||||||
func TestDefaultTagSuffix(t *testing.T) {
|
func TestDefaultTagSuffix(t *testing.T) {
|
||||||
var tests = []struct {
|
var tests = []struct {
|
||||||
Before string
|
Before string
|
||||||
DefaultBranch string
|
Suffix string
|
||||||
Suffix string
|
After []string
|
||||||
After []string
|
|
||||||
}{
|
}{
|
||||||
// without suffix
|
// without suffix
|
||||||
{
|
{
|
||||||
After: []string{"latest"},
|
After: []string{"latest"},
|
||||||
DefaultBranch: "",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Before: "refs/tags/v1.0.0",
|
Before: "refs/tags/v1.0.0",
|
||||||
DefaultBranch: "",
|
|
||||||
After: []string{
|
After: []string{
|
||||||
"1",
|
"1",
|
||||||
"1.0",
|
"1.0",
|
||||||
@ -77,14 +68,12 @@ func TestDefaultTagSuffix(t *testing.T) {
|
|||||||
},
|
},
|
||||||
// with suffix
|
// with suffix
|
||||||
{
|
{
|
||||||
DefaultBranch: "",
|
Suffix: "linux-amd64",
|
||||||
Suffix: "linux-amd64",
|
After: []string{"linux-amd64"},
|
||||||
After: []string{"linux-amd64"},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
DefaultBranch: "",
|
Before: "refs/tags/v1.0.0",
|
||||||
Before: "refs/tags/v1.0.0",
|
Suffix: "linux-amd64",
|
||||||
Suffix: "linux-amd64",
|
|
||||||
After: []string{
|
After: []string{
|
||||||
"1-linux-amd64",
|
"1-linux-amd64",
|
||||||
"1.0-linux-amd64",
|
"1.0-linux-amd64",
|
||||||
@ -92,14 +81,12 @@ func TestDefaultTagSuffix(t *testing.T) {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
DefaultBranch: "",
|
Suffix: "nanoserver",
|
||||||
Suffix: "nanoserver",
|
After: []string{"nanoserver"},
|
||||||
After: []string{"nanoserver"},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
DefaultBranch: "",
|
Before: "refs/tags/v1.9.2",
|
||||||
Before: "refs/tags/v1.9.2",
|
Suffix: "nanoserver",
|
||||||
Suffix: "nanoserver",
|
|
||||||
After: []string{
|
After: []string{
|
||||||
"1-nanoserver",
|
"1-nanoserver",
|
||||||
"1.9-nanoserver",
|
"1.9-nanoserver",
|
||||||
@ -109,31 +96,9 @@ func TestDefaultTagSuffix(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
got, want := DefaultTagSuffix(test.Before, test.DefaultBranch, test.Suffix), test.After
|
got, want := DefaultTagSuffix(test.Before, test.Suffix), test.After
|
||||||
if !reflect.DeepEqual(got, want) {
|
if !reflect.DeepEqual(got, want) {
|
||||||
t.Errorf("Got tag %v, want %v", got, want)
|
t.Errorf("Got tag %v, want %v", got, want)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_stripHeadPrefix(t *testing.T) {
|
|
||||||
type args struct {
|
|
||||||
ref string
|
|
||||||
}
|
|
||||||
tests := []struct {
|
|
||||||
args args
|
|
||||||
want string
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
args: args{
|
|
||||||
ref: "refs/heads/master",
|
|
||||||
},
|
|
||||||
want: "master",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
for _, tt := range tests {
|
|
||||||
if got := stripHeadPrefix(tt.args.ref); got != tt.want {
|
|
||||||
t.Errorf("stripHeadPrefix() = %v, want %v", got, tt.want)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user