Brad Fitzpatrick | 49a6e22 | 2017-03-28 13:59:03 -0700 | [diff] [blame] | 1 | # Using gomote |
| 2 | |
| 3 | ## Installing |
| 4 | |
| 5 | ``` |
Keith Randall | 959c53b | 2017-04-06 09:50:54 -0700 | [diff] [blame] | 6 | $ go get -u golang.org/x/build/cmd/gomote |
Brad Fitzpatrick | 49a6e22 | 2017-03-28 13:59:03 -0700 | [diff] [blame] | 7 | ``` |
| 8 | |
| 9 | ## Using |
| 10 | |
| 11 | TODO: examples. For now: |
| 12 | |
| 13 | ``` |
| 14 | The gomote command is a client for the Go builder infrastructure. |
| 15 | It's a remote control for remote Go builder machines. |
| 16 | |
| 17 | Usage: |
| 18 | |
| 19 | gomote [global-flags] cmd [cmd-flags] |
| 20 | |
| 21 | For example, |
| 22 | $ gomote create openbsd-amd64-60 |
| 23 | user-username-openbsd-amd64-60-0 |
| 24 | $ gomote push user-username-openbsd-amd64-60-0 |
| 25 | $ gomote run user-username-openbsd-amd64-60-0 go/src/make.bash |
| 26 | $ gomote run user-username-openbsd-amd64-60-0 go/bin/go test -v -short os |
| 27 | |
| 28 | To list the subcommands, run "gomote" without arguments: |
| 29 | |
| 30 | Commands: |
| 31 | |
| 32 | create create a buildlet |
| 33 | destroy destroy a buildlet |
| 34 | gettar extract a tar.gz from a buildlet |
| 35 | list list buildlets |
| 36 | ls list the contents of a directory on a buildlet |
| 37 | ping test whether a buildlet is alive and reachable |
| 38 | push sync the repo of your pwd to the buildlet |
| 39 | put put files on a buildlet |
| 40 | put14 put Go 1.4 in place |
| 41 | puttar extract a tar.gz to a buildlet |
| 42 | rm delete files or directories |
| 43 | run run a command on a buildlet |
| 44 | |
| 45 | To list all the builder types available, run "create" with no arguments: |
| 46 | |
| 47 | $ gomote create |
| 48 | (tons of builder types) |
| 49 | |
| 50 | The "gomote run" command has many of its own flags: |
| 51 | |
| 52 | $ gomote run -h |
| 53 | create usage: gomote run [run-opts] <instance> <cmd> [args...] |
| 54 | -builderenv string |
| 55 | Optional alternate builder to act like. Must share the same |
| 56 | underlying buildlet host type, or it's an error. For |
| 57 | instance, linux-amd64-race or linux-386-387 are compatible |
| 58 | with linux-amd64, but openbsd-amd64 and openbsd-386 are |
| 59 | different hosts. |
| 60 | -debug |
| 61 | write debug info about the command's execution before it begins |
| 62 | -dir string |
| 63 | Directory to run from. Defaults to the directory of the |
| 64 | command, or the work directory if -system is true. |
| 65 | -e value |
| 66 | Environment variable KEY=value. The -e flag may be repeated |
| 67 | multiple times to add multiple things to the environment. |
| 68 | -path string |
| 69 | Comma-separated list of ExecOpts.Path elements. The special |
| 70 | string 'EMPTY' means to run without any $PATH. The empty |
| 71 | string (default) does not modify the $PATH. Otherwise, the |
| 72 | following expansions apply: the string '$PATH' expands to |
| 73 | the current PATH element(s), the substring '$WORKDIR' |
| 74 | expands to the buildlet's temp workdir. |
| 75 | -system |
| 76 | run inside the system, and not inside the workdir; this is implicit if cmd starts with '/' |
| 77 | ``` |
Brad Fitzpatrick | 3f1d563 | 2017-04-06 15:57:39 -0700 | [diff] [blame] | 78 | |
| 79 | ## Tricks |
| 80 | |
| 81 | ### Windows |
| 82 | |
| 83 | ``` |
| 84 | $ gomote run -path '$PATH,$WORKDIR/go/bin' -e 'GOROOT=c:\workdir\go' user-bradfitz-windows-amd64-gce-0 go/bin/go.exe test cmd/go -short |
| 85 | ``` |
| 86 | |
| 87 | ### Subrepos on Windows |
| 88 | |
| 89 | ``` |
| 90 | $ tar -C ~/src/ -zc golang.org/x/tools | gomote puttar -dir=gopath/src $MOTE |
| 91 | $ gomote run -e 'GOPATH=c:/workdir/gopath' $MOTE go/bin/go test -run=TestFixImportsVendorPackage golang.org/x/tools/imports |
| 92 | ``` |
Tobias Klauser | b5b9a2b | 2017-12-12 15:26:15 +0100 | [diff] [blame] | 93 | |
| 94 | ### Subrepos on Unix |
| 95 | |
| 96 | Testing golang.org/x/sys/unix on $MOTE |
| 97 | |
| 98 | ``` |
| 99 | $ tar -C $GOPATH/src/ -zc golang.org/x/sys/unix | gomote puttar -dir=gopath/src $MOTE |
| 100 | $ gomote run -e 'GOPATH=/tmp/workdir/gopath' $MOTE go/bin/go test -v golang.org/x/sys/unix |
| 101 | ``` |