blob: cf32db5a3789fa4a5fb92a45cb35f5b1b2f43a35 [file] [log] [blame]
// Copyright 2020 The LUCI 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 jobcreate
import (
"time"
"google.golang.org/protobuf/types/known/durationpb"
"go.chromium.org/luci/led/job"
swarmingpb "go.chromium.org/luci/swarming/proto/api_v2"
)
func bbCommonFromTaskRequest(bb *job.Buildbucket, r *swarmingpb.NewTaskRequest) {
ts := r.TaskSlices[0]
bb.EnsureBasics()
bb.CipdPackages = ts.Properties.GetCipdInput().GetPackages()
bb.EnvVars = strPairs(ts.Properties.Env, func(key string) bool {
return key != "BUILDBUCKET_EXPERIMENTAL"
})
bb.EnvPrefixes = ts.Properties.EnvPrefixes
bb.BbagentArgs.Build.SchedulingTimeout = durationpb.New(
time.Second * time.Duration(r.ExpirationSecs))
bb.BotPingTolerance = durationpb.New(
time.Second * time.Duration(r.BotPingToleranceSecs))
bb.Containment = ts.Properties.Containment
}