forked from GoogleContainerTools/skaffold
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuilder.go
116 lines (103 loc) · 3.67 KB
/
builder.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
Copyright 2019 The Skaffold Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package bazel
import (
"context"
"io"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/build"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/build/tag"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/config"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/constants"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/docker"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/event"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/latest"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/util"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
yaml "gopkg.in/yaml.v2"
)
// Builder builds artifacts with Bazel.
type Builder struct {
opts *config.SkaffoldOptions
env *latest.ExecutionEnvironment
*latest.LocalBuild
LocalDocker docker.LocalDaemon
LocalCluster bool
PushImages bool
PluginMode bool
KubeContext string
}
// NewBuilder creates a new Builder that builds artifacts with Bazel.
func NewBuilder() *Builder {
return &Builder{
PluginMode: true,
}
}
// Init stores skaffold options and the execution environment
func (b *Builder) Init(opts *config.SkaffoldOptions, env *latest.ExecutionEnvironment) {
if b.PluginMode {
if err := event.SetupRPCClient(opts); err != nil {
logrus.Warn("error establishing gRPC connection to skaffold process; events will not be handled correctly")
logrus.Warn(err.Error())
}
}
b.opts = opts
b.env = env
}
// Labels are labels specific to Bazel.
func (b *Builder) Labels() map[string]string {
return map[string]string{
constants.Labels.Builder: "bazel",
}
}
// DependenciesForArtifact returns the dependencies for this bazel artifact
func (b *Builder) DependenciesForArtifact(ctx context.Context, artifact *latest.Artifact) ([]string, error) {
if err := setArtifact(artifact); err != nil {
return nil, err
}
if artifact.BazelArtifact == nil {
return nil, errors.New("bazel artifact is nil")
}
paths, err := GetDependencies(ctx, artifact.Workspace, artifact.BazelArtifact)
if err != nil {
return nil, errors.Wrap(err, "getting bazel dependencies")
}
return util.AbsolutePaths(artifact.Workspace, paths), nil
}
// Build is responsible for building artifacts in their respective execution environments
// The builder plugin is also responsible for setting any necessary defaults
func (b *Builder) Build(ctx context.Context, out io.Writer, tags tag.ImageTags, artifacts []*latest.Artifact) ([]build.Artifact, error) {
switch b.env.Name {
case constants.Local:
return b.local(ctx, out, tags, artifacts)
default:
return nil, errors.Errorf("%s is not a supported environment for builder bazel", b.env.Name)
}
}
func setArtifact(artifact *latest.Artifact) error {
if artifact.ArtifactType.BazelArtifact != nil {
return nil
}
var a *latest.BazelArtifact
if err := yaml.UnmarshalStrict(artifact.BuilderPlugin.Contents, &a); err != nil {
return errors.Wrap(err, "unmarshalling bazel artifact")
}
if a == nil {
return errors.New("artifact is nil")
}
if a.BuildTarget == "" {
return errors.Errorf("%s must have an associated build target", artifact.ImageName)
}
artifact.ArtifactType.BazelArtifact = a
return nil
}