3cc4afc703
and build task drivers per platform so we can. Cq-Include-Trybots: luci.skia.skia.primary:FM-Debian10-Clang-GCE-CPU-AVX2-x86_64-Debug-All,FM-Win2019-Clang-GCE-CPU-AVX2-x86_64-Debug-All,FM-Mac10.13-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Debug-All Change-Id: Ie076abc6ba4692eaac4b44c2ecdc0c07e3246044 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/363737 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Eric Boren <borenet@google.com>
37 lines
1.1 KiB
Bash
Executable File
37 lines
1.1 KiB
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}"
|
|
git init
|
|
git remote add origin https://skia.googlesource.com/skia.git
|
|
git add .
|
|
git commit -a -m "initial commit to make go modules work"
|
|
export GOFLAGS="-mod=readonly"
|
|
go mod download
|
|
go install -v go.skia.org/infra/infra/bots/task_drivers/build_push_docker_image
|
|
go install -v go.skia.org/infra/infra/bots/task_drivers/push_apps_from_skia_image
|
|
go install -v go.skia.org/infra/infra/bots/task_drivers/push_apps_from_wasm_image
|
|
go install -v go.skia.org/infra/infra/bots/task_drivers/update_go_deps
|
|
|
|
goos=$2
|
|
goarch=$3
|
|
if [ "$goos" == "windows" ]; then suffix=".exe"; else suffix=""; fi
|
|
|
|
# Build task drivers from this repo.
|
|
task_drivers_dir=infra/bots/task_drivers
|
|
for td in $(cd ${task_drivers_dir} && ls); do
|
|
CGO_ENABLED=0 GOARCH=$goarch GOOS=$goos go build -o ${1}/${td}${suffix} ${task_drivers_dir}/${td}/${td}.go
|
|
done
|