blob: 9be9fbab3ed7f00447f0c901d4117549596925c6 [file] [log] [blame]
# Copyright 2023 The Shac 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.
def go_install(ctx, pkg, version):
"""Runs `go install`."""
tool_name = pkg.split("/")[-1]
env = go_env(ctx, tool_name)
ctx.os.exec(
["go", "install", "%s@%s" % (pkg, version)],
allow_network = True,
env = env,
).wait()
return "%s/%s" % (env["GOBIN"], tool_name)
def go_env(ctx, key):
# TODO(olivernewman): Stop using a separate GOPATH for each tool, and instead
# install the tools sequentially. Multiple concurrent `go install` runs on the
# same GOPATH results in race conditions.
gopath = "%s/.tools/gopath/%s" % (ctx.scm.root, key)
return {
# Disable cgo as it's not necessary and not all development platforms have
# the necessary headers.
"CGO_ENABLED": "0",
"GOFLAGS": " ".join([
# Disable embedding VCS information because it causes ineffassign builds
# to fail on some machines.
"-buildvcs=false",
]),
"GOPATH": gopath,
"GOBIN": "%s/bin" % gopath,
# Cache within the directory to avoid writing to $HOME/.cache.
# TODO(olivernewman): Implement named caches.
"GOCACHE": "%s/.tools/gocache" % ctx.scm.root,
# TODO(olivernewman): The default gopackagesdriver is broken within an
# nsjail.
"GOPACKAGESDRIVER": "off",
}