pkg/builder/builder.go (85 lines of code) (raw):

/* 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" "errors" "os" "sort" "strconv" "time" v1 "github.com/apache/camel-k/v2/pkg/apis/camel/v1" "github.com/apache/camel-k/v2/pkg/client" "github.com/apache/camel-k/v2/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, } steps, err := StepsFrom(t.task.Steps...) if err != nil { t.log.Errorf(err, "invalid builder steps: %s", t.task.Steps) result.Failed(err) return result } // 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 errors.Is(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 }