2016-04-19 20:02:28 +00:00
|
|
|
package yaml
|
2016-04-11 18:15:53 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
limitTags = 10
|
|
|
|
limitAxis = 25
|
|
|
|
)
|
|
|
|
|
|
|
|
// Matrix represents the build matrix.
|
|
|
|
type Matrix map[string][]string
|
|
|
|
|
|
|
|
// Axis represents a single permutation of entries from the build matrix.
|
|
|
|
type Axis map[string]string
|
|
|
|
|
|
|
|
// String returns a string representation of an Axis as a comma-separated list
|
|
|
|
// of environment variables.
|
|
|
|
func (a Axis) String() string {
|
|
|
|
var envs []string
|
|
|
|
for k, v := range a {
|
|
|
|
envs = append(envs, k+"="+v)
|
|
|
|
}
|
|
|
|
return strings.Join(envs, " ")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseMatrix parses the Yaml matrix definition.
|
|
|
|
func ParseMatrix(data []byte) ([]Axis, error) {
|
2016-04-27 21:46:01 +00:00
|
|
|
|
|
|
|
axis, err := parseMatrixList(data)
|
|
|
|
if err == nil && len(axis) != 0 {
|
|
|
|
return axis, nil
|
|
|
|
}
|
|
|
|
|
2016-04-11 18:15:53 +00:00
|
|
|
matrix, err := parseMatrix(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// if not a matrix build return an array with just the single axis.
|
|
|
|
if len(matrix) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return calcMatrix(matrix), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseMatrixString parses the Yaml string matrix definition.
|
|
|
|
func ParseMatrixString(data string) ([]Axis, error) {
|
|
|
|
return ParseMatrix([]byte(data))
|
|
|
|
}
|
|
|
|
|
|
|
|
func calcMatrix(matrix Matrix) []Axis {
|
|
|
|
// calculate number of permutations and extract the list of tags
|
|
|
|
// (ie go_version, redis_version, etc)
|
|
|
|
var perm int
|
|
|
|
var tags []string
|
|
|
|
for k, v := range matrix {
|
|
|
|
perm *= len(v)
|
|
|
|
if perm == 0 {
|
|
|
|
perm = len(v)
|
|
|
|
}
|
|
|
|
tags = append(tags, k)
|
|
|
|
}
|
|
|
|
|
|
|
|
// structure to hold the transformed result set
|
|
|
|
axisList := []Axis{}
|
|
|
|
|
|
|
|
// for each axis calculate the uniqe set of values that should be used.
|
|
|
|
for p := 0; p < perm; p++ {
|
|
|
|
axis := map[string]string{}
|
|
|
|
decr := perm
|
|
|
|
for i, tag := range tags {
|
|
|
|
elems := matrix[tag]
|
|
|
|
decr = decr / len(elems)
|
|
|
|
elem := p / decr % len(elems)
|
|
|
|
axis[tag] = elems[elem]
|
|
|
|
|
|
|
|
// enforce a maximum number of tags in the build matrix.
|
|
|
|
if i > limitTags {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// append to the list of axis.
|
|
|
|
axisList = append(axisList, axis)
|
|
|
|
|
|
|
|
// enforce a maximum number of axis that should be calculated.
|
|
|
|
if p > limitAxis {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return axisList
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseMatrix(raw []byte) (Matrix, error) {
|
|
|
|
data := struct {
|
|
|
|
Matrix map[string][]string
|
|
|
|
}{}
|
|
|
|
err := yaml.Unmarshal(raw, &data)
|
|
|
|
return data.Matrix, err
|
|
|
|
}
|
2016-04-27 21:46:01 +00:00
|
|
|
|
|
|
|
func parseMatrixList(raw []byte) ([]Axis, error) {
|
|
|
|
data := struct {
|
|
|
|
Matrix struct {
|
|
|
|
Include []Axis
|
|
|
|
}
|
|
|
|
}{}
|
|
|
|
|
|
|
|
err := yaml.Unmarshal(raw, &data)
|
|
|
|
return data.Matrix.Include, err
|
|
|
|
}
|