2019-02-10 19:00:16 +00:00
|
|
|
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
2019-02-21 20:48:45 +00:00
|
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
|
|
// that can be found in the LICENSE file.
|
2019-02-10 19:00:16 +00:00
|
|
|
|
2019-01-28 15:34:05 +00:00
|
|
|
package matrix
|
|
|
|
|
|
|
|
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, " ")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse parses the Yaml matrix definition.
|
|
|
|
func Parse(data []byte) ([]Axis, error) {
|
|
|
|
|
|
|
|
axis, err := parseList(data)
|
|
|
|
if err == nil && len(axis) != 0 {
|
|
|
|
return axis, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
matrix, err := parse(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 calc(matrix), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseString parses the Yaml string matrix definition.
|
|
|
|
func ParseString(data string) ([]Axis, error) {
|
|
|
|
return Parse([]byte(data))
|
|
|
|
}
|
|
|
|
|
|
|
|
func calc(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 parse(raw []byte) (Matrix, error) {
|
|
|
|
data := struct {
|
|
|
|
Matrix map[string][]string
|
|
|
|
}{}
|
|
|
|
err := yaml.Unmarshal(raw, &data)
|
|
|
|
return data.Matrix, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseList(raw []byte) ([]Axis, error) {
|
|
|
|
data := struct {
|
|
|
|
Matrix struct {
|
|
|
|
Include []Axis
|
|
|
|
}
|
|
|
|
}{}
|
|
|
|
|
|
|
|
err := yaml.Unmarshal(raw, &data)
|
|
|
|
return data.Matrix.Include, err
|
|
|
|
}
|