This command line tool and associated Go package makes it easy to make custom builds of k6.
It is used heavily by k6 extension developers as well as anyone who wishes to make custom k6 binaries (with or without extensions).
Stay updated, be aware of changes, and please submit feedback! Thanks!
You can download binaries that are already compiled for your platform, or build xk6 from source:
$ go get -u github.com/k6io/xk6/cmd/xk6The xk6 command has two primary uses:
- Compile custom
k6binaries - A replacement for
go runwhile developing k6 extensions
The xk6 command will use the latest version of k6 by default. You can customize this for all invocations by setting the K6_VERSION environment variable.
As usual with go command, the xk6 command will pass the GOOS, GOARCH, and GOARM environment variables through for cross-compilation.
Syntax:
$ xk6 build [<k6_version>]
[--output <file>]
[--with <module[@version][=replacement]>...]
<k6_version>is the core k6 version to build; defaults toK6_VERSIONenv variable or latest.--outputchanges the output file.--withcan be used multiple times to add extensions by specifying the Go module name and optionally its version, similar togo get. Module name is required, but specific version and/or local replacement are optional.
Examples:
$ xk6 build \
--with github.com/k6io/xk6-sql
$ xk6 build v0.29.0 \
--with github.com/k6io/xk6-sql@v0.0.1
$ xk6 build \
--with github.com/k6io/xk6-sql=../../my-fork
$ xk6 build \
--with github.com/k6io/xk6-sql=.
$ xk6 build \
--with github.com/k6io/xk6-sql@v0.0.1=../../my-forkIf you run xk6 from within the folder of the k6 extension you're working on without the build subcommand, it will build k6 with your current module and run it, as if you manually plugged it in and invoked go run.
The binary will be built and run from the current directory, then cleaned up.
The current working directory must be inside an initialized Go module.
Syntax:
$ xk6 <args...>
<args...>are passed through to thek6command.
For example:
$ xk6 version
$ xk6 run -u 10 -d 10s test.jsThe race detector can be enabled by setting XK6_RACE_DETECTOR=1.
builder := xk6.Builder{
k6Version: "v0.29.0",
Plugins: []xk6.Dependency{
{
ModulePath: "github.com/k6io/xk6-sql",
Version: "v0.0.1",
},
},
}
err := builder.Build(context.Background(), "./k6")Versions can be anything compatible with go get.
Because the subcommands and flags are constrained to benefit rapid extension prototyping, xk6 does read some environment variables to take cues for its behavior and/or configuration when there is no room for flags.
K6_VERSIONsets the version of k6 to build.XK6_RACE_DETECTOR=1enables the Go race detector in the build.XK6_SKIP_CLEANUP=1causes xk6 to leave build artifacts on disk after exiting.
© 2020 Matthew Holt