346e156def
Change-Id: I8cb78d16589b28b2965962caf7a455bf046c4b15 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/216340 Commit-Queue: Eric Boren <borenet@google.com> Reviewed-by: Ben Wagner aka dogben <benjaminwagner@google.com>
18 lines
404 B
Bash
Executable File
18 lines
404 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2019 Google, LLC
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
set -x -e
|
|
|
|
export GOCACHE="$(pwd)/cache/go_cache"
|
|
export GOPATH="$(pwd)/cache/gopath"
|
|
export GOROOT="$(pwd)/go/go"
|
|
|
|
cd skia
|
|
|
|
# Build task drivers from the infra repo.
|
|
export GOBIN="${1}"
|
|
go install -v go.skia.org/infra/infra/bots/task_drivers/update_go_deps
|