sublime-build: Added new Benchmark build variant

This new build variant allows users to run benchmarks independently
of running their normal tests. Additional benchmark:flags can be added
to their golang.sublime-settings to further control the output or
behaviour of the benchmarks.

Fixes #13

Change-Id: I466d1d07ca6ec6c0e5d23261c13be754a6b786be
Reviewed-on: https://go-review.googlesource.com/16851
Reviewed-by: Will Bond <will@wbond.net>
Reviewed-by: Jason Buberel <jbuberel@google.com>
8 files changed
tree: 68ef87ec21a85fbf5329e4800d057ecbfafbb863
  1. dev/
  2. docs/
  3. .gitignore
  4. .pep8
  5. AUTHORS
  6. changelog.md
  7. CONTRIBUTING.md
  8. CONTRIBUTORS
  9. Default.sublime-commands
  10. dependencies.json
  11. Go.sublime-build
  12. Golang Build Output.tmLanguage
  13. golang_build.py
  14. LICENSE
  15. PATENTS
  16. readme.md
readme.md

Golang Build

Golang Build is a Sublime Text package for compiling Go projects. It provides integration between Sublime Text and the command line go tool.

The package consists of the following features:

  • A Sublime Text build system for executing:
    • go build
    • go run
    • go install
    • go test to run Tests or Benchmarks
    • go clean
    • Cross-compilation using go build with GOOS and GOARCH
  • Sublime Text command palette commands to:
    • Execute go get
    • Open a terminal into a Go workspace

Installation

The Golang Build package is installed by using Package Control.

  • If Package Control is not installed, follow the Installation Instructions
  • Open the Sublime Text command palette and run the Package Control: Install Package command
  • Type Golang Build and select the package to perform the installation

Documentation

End User

Contributor