You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
runner-go/environ/provider/combine.go

31 lines
709 B
Go

// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Polyform License
// that can be found in the LICENSE file.
package provider
import "context"
// Combine returns a new combined environment provider,
// capable of sourcing environment variables from multiple
// providers.
func Combine(sources ...Provider) Provider {
return &combined{sources}
}
type combined struct {
sources []Provider
}
func (p *combined) List(ctx context.Context, in *Request) ([]*Variable, error) {
var out []*Variable
for _, source := range p.sources {
got, err := source.List(ctx, in)
if err != nil {
return nil, err
}
out = append(out, got...)
}
return out, nil
}