+++ title = "Mage Build Tool" +++

mage

Mage is a make/rake-like build tool using Go.

## Installation Mage has no dependencies outside the Go standard library, and builds with Go 1.7 and above (possibly even lower versions, but they're not regularly tested). To install, just use `go get`: `go get github.com/magefile/mage` ## Demo {{< youtube GOqbD0lF-iA >}} ## Discussion Join the `#mage` channel on [gophers slack](https://gophers.slack.com/messages/general/) for discussion of usage, development, etc. ## Magefiles A mage file is any regular go file marked with a build target of "mage" and in package main. ```go // +build mage package main ``` You can quickly create a template mage file with the `-init` option. `mage -init` You may have any number of magefiles in the same directory. Mage doesn't care what they're named aside from normal go filename rules. All they need is to have the mage build target. Handily, this also excludes them from your regular builds, so they can live side by side with your normal go files. Magefiles may use any of Go's usual build constraints, so you can include and exclude magefiles based on OS, arch, etc, whether in the filename or in the +build line. ## Targets Any exported function that is either `func()` or `func() error` is considered a mage target. If the function has an error return, errors returned from the function will print to stdout and cause the magefile to exit with an exit code of 1. Any functions that do not fit this pattern are not considered targets by mage. Comments on the target function will become documentation accessible by running `mage -l` which will list all the build targets in this directory with the first sentence from their docs, or `mage -h ` which will show the full comment from the docs on the function. A target may be designated the default target, which is run when the user runs mage with no target specified. To denote the default, create a `var Default = ` If no default target is specified, running `mage` with no target will print the list of targets, like `mage -l`. Currently only a single target may be run at a single time. Attempting to run multiple targets from a single invocation of mage will result in an error. This may change in the future. ## Dependencies Mage supports a makefile-style tree of dependencies. The helper function `mg.Deps()` may be passed any number of functions (either `func()` or `func() error` - they do not have to be exported), and the Deps function will not return until all declared dependencies have been run (and any dependencies they have are run). Dependencies are guaranteed to run exactly once in a single execution of mage, so if two of your dependencies both depend on the same function, it is still guaranteed to be run only once, and both funcs that depend on it will not continue until it has been run. Dependencies are run in their own goroutines, so they are parellelized as much as possible given the dependency tree ordering restrictions. ### Example Dependencies ```go func Build() { mg.Deps(f, g) fmt.Println("Build running") } func f() { mg.Deps(h) fmt.Println("f running") } func g() { mg.Deps(g) fmt.Println("g running") } func h() { fmt.Println("h running") } ``` Running `mage build` will produce the following output: ``` h running g running f running Build running ``` Note that since f and g do not depend on each other, and they're running in their own goroutines, their order is non-deterministic, other than they are guaranteed to run after h has finished, and before Build continues. ## Plugins There are no plugins. You don't need plugins. It's just Go code. You can import whatever libraries you want. Every library in the go ecosystem is a mage plugin. Every tool you use with Go can be used with Magefiles. ## Usage ``` mage [options] [target] Options: -f force recreation of compiled magefile -h show this help -init create a starting template if no mage files exist -keep keep intermediate mage files around after running -l list mage targets in this directory -v show verbose output when running mage targets -version show version info for the mage binary ``` ## Full Example ```go // +build mage package main import ( "log" "os" ) // Build target is any exported function with zero args with no return or an error return. // If a target has an error return and returns an non-nil error, mage will print // that error to stdout and return with an exit code of 1. func Install() error { } // The first sentence in the comment will be the short help text shown with mage -l. // The rest of the comment is long help text that will be shown with mage -h func Target() { // by default, the log stdlib package will be set to discard output. // Running with mage -v will set the output to stdout. log.Printf("Hi!") } // A var named Default indicates which target is the default. var Default = Install // Because build targets are case insensitive, you may not have two build targets // that lowercase to the same text. This would give you an error when you tried // to run the magefile: // func BUILD() {} ``` ``` $ mage -l Targets: install* Build target is any exported function with zero args with no return or an error return. target The first sentence in the comment will be the short help text shown with mage -l. * default target ``` ``` $ mage -h target mage target: The first sentence in the comment will be the short help text shown with mage -l. The rest of the comment is long help text that will be shown with mage -h ``` ## How it works Mage scans the current directory for go files with the `mage` build tag, using the normal go build rules for following build constraints (aside from requiring the mage tag). It then parses those files to find the build targets, generates a main file for the command, and compiles a binary from those files. The magefiles are hashed so that if they remain unchanged, the same compiled binary will be reused next time, to avoid the generation overhead. ## Binary Cache Compiled magefile binaries are stored in $HOME/.magefile. This location can be customized by setting the MAGEFILE_CACHE environment variable. ## Requirements Mage itself requires no dependencies to run. However, because it is compiling go code, you must have a valid go environment set up on your machine. Mage is compatibile with any go 1.x environment. ## Zero install option with `go run` Don't want to depend on another binary in your environment? You can run mage directly out of your vendor directory (or GOPATH) with `go run`. Just save a file like this (I'll call it `mage.go`, but it can be named anything) (note that the build tag is *not* `+build mage`). Then you can `go run mage.go ` and it'll work just as if you ran `mage ` ```go // +build ignore package main import ( "os" "github.com/magefile/mage/mage" ) func main() { os.Exit(mage.Main()) } ``` Note that because of the peculiarities of `go run`, if you run this way, go run will only ever exit with an error code of 0 or 1. If mage exits with error code 99, for example, `go run` will print out `exit status 99" and then exit with error code 1. Why? Ask the go team. I've tried to get them to fix it, and they won't. ## Helper Libraries There are two libraries bundled with mage, [mg](https://godoc.org/github.com/magefile/mage/mg) and [sh](https://godoc.org/github.com/magefile/mage/sh). Package mg contains mage-specific helpers, such as Deps for declaring dependent functions, and functions for returning errors with specific error codes that mage understands. Package sh contains helpers for running shell-like commands with an API that's easier on the eyes and more helpful than os/exec. ## Use Mage as a library All of mage's functionality is accessible as a compile-in library. Checkout [godoc.org/github.com/magefile/mage/mage](https://godoc.org/github.com/mage/mage) for full details. Fair warning, the API of mage/mage may change, so be sure to use vendoring. ## Why? Makefiles are hard to read and hard to write. Mostly because makefiles are essentially fancy bash scripts with significant white space and additional make-related syntax. Mage lets you have multiple magefiles, name your magefiles whatever you want, and they're easy to customize for multiple operating systems. Mage has no dependencies (aside from go) and runs just fine on all major operating systems, whereas make generally uses bash which is not well supported on Windows. Go is superior to bash for any non-trivial task involving branching, looping, anything that's not just straight line execution of commands. And if your project is written in Go, why introduce another language as idiosyncratic as bash? Why not use the language your contributors are already comfortable with? ## Code [https://github.com/magefile/mage](https://github.com/magefile/mage) ## Projects that build with Mage [![Hugo](/images/hugo.png)](https://github.com/gohugoio/hugo) [![Gnorm](/images/gnorm.png)](https://github.com/gnormal/gnorm)