commit | 20bb8dd07f391cc1c949d13bc1b0f86a5af48a7e | [log] [tgz] |
---|---|---|
author | Vadim Shtayura <vadimsh@chromium.org> | Mon Aug 28 20:31:33 2017 -0700 |
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Tue Aug 29 11:19:25 2017 +0000 |
tree | 26c03e4a50b3bb7932656f25539459cb719dc5ee | |
parent | 2ef66c1df75a750db2343fd0a314bf08b8ea22c7 [diff] |
Fetch luci-go repo from its new home at go.chromium.org/luci. Github copy is currently stale. Need fresher code to get Swarming API wrapper that knows about ServiceAccount field. BUG=chromium:759940 R=borenet@google.com, rmistry@google.com Change-Id: I51fb0f218fb04afcd81e4d1535a97ac7d91e6a21 Reviewed-on: https://skia-review.googlesource.com/39880 Commit-Queue: Eric Boren <borenet@google.com> Reviewed-by: Eric Boren <borenet@google.com>
This repo contains infrastructure code for Skia.
The main source code repository is a Git repository hosted at https://skia.googlesource.com/buildbot. Although it is possible to check out this repository directly with git clone or using gclient fetch, it is preferred to use go get so that the code is arranged correctly for Go. If this is your first time working on Go code, read about the GOPATH environment variable. Make sure that $GOPATH/bin comes before /usr/bin in your PATH. If you have GOPATH set, run:
$ go get -u -t go.skia.org/infra/...
This fetches the repository into your $GOPATH directory along with all the Go dependencies. Note: go.skia.org is a custom import path and will only work if used like the examples here.
Install Node.js (not as root) and add the bin dir to your path. Optionally run npm install npm -g
, as suggested by the npm getting started doc.
Install other dependencies:
$ sudo apt-get install python-django $ go get github.com/kisielk/errcheck \ golang.org/x/tools/cmd/goimports \ go.chromium.org/luci/client/cmd/isolate $ npm install -g polylint bower
Build from GOPATH:
$ cd $GOPATH/src/go.skia.org/infra/ $ make all
Tests which use the database package's testutils require you to have a MySQL instance running with a database named “sk_testing” and users called “readwrite” and “test_root” with appropriate permissions for sk_testing. The ‘setup_test_db’ script in ‘go/database’ is included for convenience in setting up this test database and user.
Go tests require a local installation of MySQL. For a Debian based distro:
$ sudo apt-get install mysql-client mysql-server
Leave the root password blank.
Then, to set up local versions of the production databases:
$ cd $GOPATH/src/go.skia.org/infra/go/database $ ./setup_test_db
Install Cloud SDK.
The installed python-django version must be >= 1.7. Run the following to update:
$ sudo pip install Django --upgrade
Use this command to run the presubmit tests:
$ ./run_unittests --small