blob: 12d3718724890cd8c0b0af62a3e0ad9c54f62bc4 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 builder
import (
"context"
"os"
"path"
"sort"
"strconv"
"time"
v1 "github.com/apache/camel-k/pkg/apis/camel/v1"
"github.com/apache/camel-k/pkg/client"
"github.com/apache/camel-k/pkg/util/log"
)
type builderTask struct {
c client.Client
log log.Logger
build *v1.Build
task *v1.BuilderTask
}
var _ Task = &builderTask{}
func (t *builderTask) Do(ctx context.Context) v1.BuildStatus {
result := v1.BuildStatus{}
buildDir := t.task.BuildDir
if buildDir == "" {
// Use the working directory.
// This is useful when the task is executed in-container,
// so that its WorkingDir can be used to share state and
// coordinate with other tasks.
pwd, err := os.Getwd()
if err != nil {
return result.Failed(err)
}
buildDir = pwd
}
c := builderContext{
Client: t.c,
C: ctx,
Path: buildDir,
Namespace: t.build.Namespace,
Build: *t.task,
BaseImage: t.task.BaseImage,
}
// Add sources
for _, data := range t.task.Sources {
c.Resources = append(c.Resources, resource{
Content: []byte(data.Content),
Target: path.Join("sources", data.Name),
})
}
// Add resources
for _, data := range t.task.Resources {
t := path.Join("resources", data.Name)
if data.MountPath != "" {
t = path.Join(data.MountPath, data.Name)
}
c.Resources = append(c.Resources, resource{
Content: []byte(data.Content),
Target: t,
})
}
steps := make([]Step, 0)
for _, step := range t.task.Steps {
s, ok := stepsByID[step]
if !ok {
log.Info("Skipping unknown build step", "step", step)
continue
}
steps = append(steps, s)
}
// Sort steps by phase
sort.SliceStable(steps, func(i, j int) bool {
return steps[i].Phase() < steps[j].Phase()
})
t.log.Infof("steps: %v", steps)
steps:
for _, step := range steps {
select {
case <-ctx.Done():
if ctx.Err() == context.Canceled {
// Context canceled
result.Phase = v1.BuildPhaseInterrupted
} else {
// Context timeout
result.Phase = v1.BuildPhaseFailed
}
result.Error = ctx.Err().Error()
break steps
default:
l := t.log.WithValues("step", step.ID(), "phase", strconv.FormatInt(int64(step.Phase()), 10), "task", t.task.Name)
l.Infof("executing step")
start := time.Now()
err := step.execute(&c)
if err != nil {
l.Infof("step failed with error: %s", err.Error())
result.Failed(err)
break steps
}
l.Infof("step done in %f seconds", time.Since(start).Seconds())
}
}
if result.Phase == v1.BuildPhaseInterrupted {
t.log.Infof("build task %s interrupted", t.task.Name)
return result
}
result.BaseImage = c.BaseImage
result.Artifacts = make([]v1.Artifact, 0, len(c.Artifacts))
result.Artifacts = append(result.Artifacts, c.Artifacts...)
t.log.Infof("dependencies: %s", t.task.Dependencies)
t.log.Infof("artifacts: %s", artifactIDs(c.Artifacts))
t.log.Infof("artifacts selected: %s", artifactIDs(c.SelectedArtifacts))
t.log.Infof("base image: %s", t.task.BaseImage)
t.log.Infof("resolved base image: %s", c.BaseImage)
return result
}