0.1.0
This is the initial release version of wand.
The basic project setup, structure and development workflow has been bootstrapped by the tmpl-go template repository.
The following sections of this version changelog summarize used technologies, explain design decisions and provide an overview of the API and “elder“ reference implementation.
Features
Bootstrap based on “tmpl-go“ template repository — #1, #2, #4, #12 ⇄ #3, #5, #13 (⊶ dbf11bc, f1eee4a, f778fd9, 5d41725)
↠ Bootstrapped the basic project setup, structure and development workflow from version 0.3.0 of the “tmpl-go“ template repository.
Project specific files like the repository hero image, documentations and GitHub issue/PR templates have been adjusted.
Application configuration store — #8 ⇄ #9 (⊶ a233575)
↠ Like described in the /apps
directory documentation of the tmpl-go template repository, wand also aims to support the monorepo layout.
In order to manage multiple applications, their information and metadata is recorded in a configuration store where each entry is identified by a unique ID, usually the name of the application. The pkg/app
package provides two interfaces and an unexported struct that implements it that can be used through the exported NewStore() Store
function.
- 🆃
pkg/app.Config
— Astruct
type that holds information and metadata of an application. - 🅸
pkg/app.Store
— A storage that provides methods to record application configurations:Add(*Config)
— Adds a application configuration.Get(string) (*Config, error)
— Returns the application configuration for the given name or nil along with an error when not stored.
- 🆃
appStore
— A storage for application configurations. - 🅵
NewStore() Store
— Creates a new store for application configurations.
Project and VCS repository — #10, #18 ⇄ #11, #19 (⊶ 3e8add2, 3fa84e3)
↠ In GH-9 the store and configuration for applications has been implemented. wand applications are not standalone but part of a project which in turn is stored in a repository of a VCS like Git. In case of wand this can also be a monorepo to manage multiple applications, but there is always only a single project which all these applications are part of.
To store project and VCS repository information, some of the newly implemented packages provide the following types:
- 🆃
pkg/project.Metadata
— Astruct
type that stores information and metadata of a project. - 🆃
pkg/project.GoModuleID
— Astruct
type that stores partial information to identify a Go module. - 🆃
pkg/vcs.Kind
— Astruct
type that defines the kind of apkg/vcs.Repository
. - 🅸
pkg/vcs.Repository
— Ainterface
type to represents a VCS repository that provides methods to receive repository information:Kind() Kind
— returns the repositorypkg/vcs.Kind
.DeriveVersion() error
— derives the repository version based on thepkg/vcs.Kind
.Version() interface{}
— returns the repository version.
- 🆃
pkg/vcs/git.Git
— Astruct
type that implementspkg/vcs.Repository
to represent a Git repository. - 🆃
pkg/vcs/git.Version
— Astruct
type that stores version information and metadata derived from a Git repository. - 🆃
pkg/vcs/none.None
— Astruct
type that implementspkg/vcs.Repository
to represent a nonexistent repository.
Abstract “task“ API: _spell incantation_, _kind_ and _caster_ — #14 ⇄ #15 (⊶ 2b13b84)
↠ The wand API is inspired by the fantasy novel “Harry Potter“ and uses an abstract view to define interfaces. The main motivation to create a matching naming to the overall “magic“ topic and the actual target project Mage. This might be too abstract for some, but is kept understandable insofar as it should allow everyone to use the “task“ API and to derive their own tasks from it.
- 🅸
cast.Caster
— Ainterface
type that casts aspell.Incantation
using a command for a specificspell.Kind
:Cast(spell.Incantation) error
— casts a spell incantation.Handles() spell.Kind
— returns the spell kind that can be casted.Validate() error
— validates the caster command.
- 🅸
cast.BinaryCaster
— Ainterface
type that composescast.Caster
to run commands using a binary executable:GetExec() string
— returns the path to the binary executable of the command.
- 🅸
spell.Incantation
— Ainterface
type that is the abstract representation of parameters for a command or action:Formula() []string
— returns all parameters of a spell.Kind() Kind
— returns the Kind of a spell.Options() interface{}
— return the options of a spell.
- 🅸
cast.Binary
— Ainterface
type that composescast.Caster
for commands which are using a binary executable:Env() map[string]string
— returns additional environment variables.
- 🅸
cast.GoCode
— Ainterface
type that composescast.Caster
for actions that can be casted without acast.Caster
:Cast() (interface{}, error)
— casts itself.
- 🅸
cast.GoModule
— Ainterface
type that composescast.Binary
for commands that are compiled from a Go module:GoModuleID() *project.GoModuleID
— returns the identifier of a Go module.
- 🆃
spell.Kind
— Astruct
type that defines the kind of a spell.
The API components can be roughly translated to their purpose:
cast.Caster
→ an executable command
It validates the command and defines whichspell.Kind
can be handled by this caster. It could be executed without parameters (spell.Incantation
), but in most cases needs at least one parameter.cast.BinaryCaster
→ a composedcast.Caster
to run commands using a binary executable.
It ensures that the executable file exists and stores information like the path. It could also be executed without parameters (spell.Incantation
), but would not have any effect im many cases.
spell.Incantation
→ the parameters of a executable command
It assemble all parameters based on the given options and ensures the they are correctly formatted for the execution in a shell environment. Except for special incantations likespell.GoCode
a incantation cannot be used alone but must be passed to acast.Caster
that is able to handle thespell.Kind
of this incantation.spell.Binary
→ a composedspell.Incantation
to run commands that are using binary executable.
It can inject or override environment variables in the shell environment in which the the command will be run.spell.GoCode
→ a composedspell.Incantation
for pure Go code instead of a (binary) executable command.
It can “cast itself“, e.g. to simply delete a directory using packages likeos
from the Go standard library. It has been designed this way to also allow such tasks to be handled by the incantation API.spell.GoModule
→ a composedspell.Binary
to run binary commands managed by a Go module, in other words executables installed inGOBIN
or received viago get
.
It requires the module identifier (path@version
) in order to download and run the executable.
Basic “wand“ API — #16 ⇄ #17 (⊶ cc9f7c4)
↠ In GH-15 some parts of the wand API have been implemented in form of spell incantations, kinds and casters, inspired by the fantasy novel “Harry Potter“ as an abstract view to define interfaces. In GH-9 and GH-11 the API implementations for an application configuration store as well as project and VCS repository metadata were introduced.
These implementations are usable in a combined form via the main wand API that consists of the following types:
- 🅸
wand.Wand
— Ainterface
type that manages a project and its applications and stores their metadata. Applications are registered using a unique name and the stored metadata can be received based on this name:GetAppConfig(appName string) (app.Config, error)
— returns an application configuration.GetProjectMetadata() project.Metadata
— returns the project metadata.RegisterApp(name, displayName, pathRel string) error
— registers a new application.
- 🆃
wand.ctxKey
— Astruct
type that serves as context key used to wrap awand.Wand
. - 🅵
wand.GetCtxKey() interface{}
— Afunc
type that returns the key used to wrap awand.Wand
. - 🅵
wand.WrapCtx(parentCtx context.Context, wand Wand) context.Context
— Afunc
type that wraps the givenwand.Wand
into the parent context. Usewand.GetCtxKey() interface{}
to receive the key used to wrap thewand.Wand
.
Go toolchain “caster“ — #20 ⇄ #21 (⊶ 55e8eb4)
↠ To use the Go toolchain, also known as the go
command, a new caster (introduced in #14) has been implemented.
The new ErrCast
struct
type unifies the handling of errors in the cast package.
The Validate
function of the new caster returns an error of type *cast.ErrCast
when the go
binary executable does not exist at the configured path or when it is also not available in the executable search paths of the current environment.
“gobin“ Go module caster — #22 ⇄ #23 (⊶ 95c22a0)
Go Executable Installation
When installing a Go executable from within a Go module directory using the go install
command, it is installed into the Go executable search path that is defined through the GOBIN
environment variable and can also be shown and modified using the go env
command. Even though the executable gets installed globally, the go.mod
file will be updated to include the installed packages since this is the default behavior of the go get
command when running in module mode.
Next to this problem, the installed executable will also overwrite any executable of the same module/package that was installed already, but maybe from a different version. Therefore only one version of a executable can be installed at a time which makes it impossible to work on different projects that use the same tool but with different versions.
History & Future
The local installation of executables built from Go modules/packages has always been a somewhat controversial point which unfortunately, partly for historical reasons, does not offer an optimal and user-friendly solution up to now. The go
command is a fantastic toolchain that provides many great features one would expect to be provided out-of-the-box from a modern and well designed programming language without the requirement to use a third-party solution: from compiling code, running unit/integration/benchmark tests, quality and error analysis, debugging utilities and many more.
Unfortunately the way the go install
command of Go versions less or equal to 1.15 handles the installation of an Go module/package executable is still not optimal.
The general problem of tool dependencies is a long-time known issue/weak point of the current Go toolchain and is a highly rated change request from the Go community with discussions like golang/go#30515, golang/go#25922 and golang/go#27653 to improve this essential feature, but they‘ve been around for quite a long time without a solution that works without introducing breaking changes and most users and the Go team agree on.
Luckily, this topic was finally picked up for the next upcoming Go release version 1.16 and gh-golang/go#40276 introduces a way to install executables in module mode outside a module. The release note preview also already includes details about this change and how installation of executables from Go modules will be handled in the future.
The Workaround
Beside the great news and anticipation about an official solution for the problem the usage of a workaround is almost inevitable until Go 1.16 is finally released.
The official Go wiki provides a section on “How can I track tool dependencies for a module?” that describes a workaround that tracks tool dependencies. It allows to use the Go module logic by using a file like tools.go
with a dedicated tools
build tag that prevents the included module dependencies to be picked up included for normal executable builds. This approach works fine for non-main packages, but CLI tools that are only implemented in the main
package can not be imported in such a file.
In order to tackle this problem, a user from the community created gobin, an experimental, module-aware command to install/run main packages.
It allows to install or run main-package commands without “polluting“ the go.mod
file by default. It downloads modules in version-aware mode into a binary cache path within the systems cache directory.
It prevents problems due to already globally installed executables by placing each version in its own directory. The decision to use a cache directory instead of sub-directories within the GOBIN
path keeps the system clean.
gobin is still in an early development state, but has already received a lot of positive feedback and is used in many projects. There are also members of the core Go team that have contributed to the project and the chance is high that the changes for Go 1.16 were influenced or partially ported from it.
It is currently the best workaround to…
- …prevent the Go toolchain to pick up the
GOMOD
environment variable (seego env GOMOD
) that is initialized automatically with the path to thego.mod
file in the current working directory. - …install module/package executables globally without “polluting“ the
go.mod
file. - …install module/package executables globally without overriding already installed executables of different versions.
See gobin‘s FAQ page in the repository wiki for more details about the project.
The Go Module Caster
To allow to manage the tool dependency problem, wand uses gobin
through a new caster that prevents the “pollution“ of the project go.mod
file and allows to…
- …install
gobin
itself intoGOBIN
(go env GOBIN
). - …cast any spell incantation of kind
KindGoModule
by installing the executable globally into the dedicatedgobin
cache.
Spell incantation options “mixin“ — #25 ⇄ #26 (⊶ 9ae4f89)
↠ To allow to compose, manipulate and read spell incantation options after the initial creation, two new types have been added for the spell package:
- 🅸
spell.Options
— Ainterface
type as a generic representation forspell.Incantation
options. - 🅸
spell.Mixin
— Ainterface
type that allows to compose functions that processspell.Options
ofspell.Incantation
s.Apply(Options) (Options, error)
— applies genericspell.Options
tospell.Incantation
options.
Spell incantation for Go toolchain build
command — #27 ⇄ #28 (⊶ 060b332)
↠ To run the go build
command of the Go toolchain, a new spell.Incantation
has been implemented in the new build package that can be used through a Go toolchain caster.
The spell incantation is configurable through the following functions:
WithBinaryArtifactName(name string) build.Option
— sets the name for the binary build artifact.WithCrossCompileTargetPlatforms(platforms ...string) build.Option
— sets the names of cross-compile platform targets.WithFlags(flags ...string) build.Option
— sets additional flags to pass to the Gobuild
command along with the base Go flags.WithGoOptions(goOpts ...spellGo.Option) build.Option
— sets shared Go toolchain commands options.WithOutputDir(dir string) build.Option
— sets the output directory, relative to the project root, for compilation artifacts.
To unify further implementations for the Go toolchain, a new struct
type is available in the golang package to store global/shared Go toolchain options that are shared between multiple Go toolchain commands:
WithAsmFlags(asmFlags ...string) golang.Option
— sets flags to pass on eachgo tool asm
invocation.WithRaceDetector(enableRaceDetector bool) golang.Option
— indicates if the race detector should be enabled.WithTrimmedPath(enableTrimPath bool) golang.Option
— indicates if all file system paths should be removed from the resulting executable.WithEnv(env map[string]string) golang.Option
— adds or overrides Go toolchain command specific environment variables.WithFlags(flags ...string) golang.Option
— sets additional Go toolchain command flags.WithFlagsPrefixAll(flagsPrefixAll bool) golang.Option
— indicates if the values of-asmflags
and-gcflags
should be prefixed with theall=
pattern in order to apply to all packages.WithGcFlags(gcFlags ...string) golang.Option
— sets flags to pass on eachgo tool compile
invocation.WithLdFlags(ldFlags ...string) golang.Option
— sets flags to pass on eachgo tool link
invocation.WithMixins(mixins ...spell.Mixin) golang.Option
— setsspell.Mixin
s that can be applied by option consumers.WithTags(tags ...string) golang.Option
— sets Go toolchain tags.
The new CompileFormula(opts ...Option) []string
function can be used to compile the formula for these options.
Spell incantation for Go toolchain test
command — #29 ⇄ #30 (⊶ 166a2dc)
↠ To run the go test
command of the Go toolchain, a new spell.Incantation
is available in the new test package that can be used through a Go toolchain caster.
The spell incantation is customizable through the following functions:
WithBlockProfileOutputFileName(blockProfileOutputFileName string) test.Option
— sets the file name for the Goroutine blocking profile file.WithCoverageProfileOutputFileName(coverageProfileOutputFileName string) test.Option
— sets the file name for the test coverage profile file.WithCPUProfileOutputFileName(cpuProfileOutputFileName string) test.Option
— sets the file name for the CPU profile file.WithBlockProfile(withBlockProfile bool) test.Option
— indicates if the tests should be run with a Goroutine blocking profiling.WithCoverageProfile(withCoverageProfile bool) test.Option
— indicates if the tests should be run with coverage profiling.WithCPUProfile(withCPUProfile bool) test.Option
— indicates if the tests should be run with CPU profiling.WithFlags(flags ...string) test.Option
— sets additional flags that are passed to the Go "test" command along with the shared Go flags.WithGoOptions(goOpts ...spellGo.Option) test.Option
— sets shared Go toolchain command options.WithMemProfile(withMemProfile bool) test.Option
— indicates if the tests should be run with memory profiling.WithMemoryProfileOutputFileName(memoryProfileOutputFileName string) test.Option
— sets the file name for the memory profile file.WithMutexProfile(withMutexProfile bool) test.Option
— indicates if the tests should be run with mutex profiling.WithMutexProfileOutputFileName(mutexProfileOutputFileName string) test.Option
— sets the file name for the mutex profile file.WithOutputDir(outputDir string) test.Option
— sets the output directory, relative to the project root, for reports like coverage or benchmark profiles.WithoutCache(withoutCache bool) test.Option
— indicates if the tests should be run without test caching that is enabled by Go by default.WithPkgs(pkgs ...string) test.Option
— sets the list of packages to test.WithTraceProfile(withTraceProfile bool) test.Option
— indicates if the tests should be run with trace profiling.WithTraceProfileOutputFileName(traceProfileOutputFileName string) test.Option
— sets the file name for the execution trace profile file.WithVerboseOutput(withVerboseOutput bool) test.Option
— indicates if the test output should be verbose.
Spell incantation for golang.org/x/tools/cmd/goimports
Go module — #31 ⇄ #32 (⊶ 8c9b450)
↠ The golang.org/x/tools/cmd/goimports Go module allows to update Go import lines, adding missing ones and removing unreferenced ones. It also formats code in the same style as gofmt so it can be used as a replacement. The source code for the goimports
command can be found in the golang/tools repository.
To configure and run the goimports
command, a new spell.Incantation
is available in the new goimports package that can be casted using the gobin caster or any other spell caster that handles spell incantations of kind KindGoModule
.
The spell incantation is customizable through the following functions:
WithEnv(env map[string]string) goimports.Option
— sets the spell incantation specific environment.WithExtraArgs(extraArgs ...string) goimports.Option
— sets additional arguments to pass to thegoimports
command.WithListNonCompliantFiles(listNonCompliantFiles bool) goimports.Option
— indicates whether files, whose formatting are not conform to the style guide, are listed.WithLocalPkgs(localPkgs ...string) goimports.Option
— sets local packages whose imports will be placed after 3rd-party packages.WithModulePath(path string) goimports.Option
— sets thegoimports
module import path. Defaults togoimports.DefaultGoModulePath
.WithModuleVersion(version *semver.Version) goimports.Option
— sets thegoimports
module version. Defaults togoimports.DefaultGoModuleVersion
.WithPaths(paths ...string) goimports.Option
— sets the paths to search for Go source files. By default all directories are scanned recursively starting from the current working directory.WithPersistedChanges(persistChanges bool) goimports.Option
— indicates whether results are written to the source files instead of standard output.WithReportAllErrors(reportAllErrors bool) goimports.Option
— indicates whether all errors should be printed instead of only the first 10 on different lines.WithVerboseOutput(verbose bool) goimports.Option
— indicates whether the output should be verbose.
Spell incantation for github.com/golangci/golangci-lint
Go module — #33 ⇄ #34 (⊶ 11c9f62)
↠ The github.com/golangci/golangci-lint Go module provides the golangci-lint
command, a fast, parallel runner for dozens of Go linters Go that uses caching, supports YAML configurations and has integrations with all major IDEs. The source code for the golangci-lint
command can be found in the golangci/golangci-lint repository.
To configure and run the golangci-lint
command, a new spell.Incantation
is available in the new golangcilint package that can be casted using the gobin caster or any other spell caster that handles spell incantations of kind KindGoModule
.
The spell incantation is customizable through the following functions:
WithArgs(args ...string) golangcilint.Option
— sets additional arguments to pass to thegolangci-lint
module command.WithEnv(env map[string]string) golangcilint.Option
— sets the spell incantation specific environment.WithModulePath(path string) golangcilint.Option
— sets thegolangci-lint
module command import path. Defaults togolangcilint.DefaultGoModulePath
.WithModuleVersion(version *semver.Version) golangcilint.Option
— sets thegolangci-lint
module version. Defaults togolangcilint.DefaultGoModuleVersion
.WithVerboseOutput(verbose bool) golangcilint.Option
— indicates whether the output should be verbose.
Spell incantation for the github.com/mitchellh/gox
Go module — #35 ⇄ #36 (⊶ 4b28506)
↠ The github.com/mitchellh/gox Go module provides the gox
command, a dead simple, no frills Go cross compile tool that behaves a lot like the standard Go toolchain build
command.
To configure and run the gox
command, a new spell.Incantation
is available in the new gox package that can be casted using the gobin caster or any other spell caster that handles spell incantations of kind KindGoModule
.
The spell incantation is customizable through the following functions:
WithEnv(env map[string]string) gox.Option
— sets the spell incantation specific environment.WithGoCmd(goCmd string) gox.Option
— sets the path to the Go toolchain executable.WithOutputTemplate(outputTemplate string) gox.Option
— sets the name template for cross-compile platform targets. Defaults togox.DefaultCrossCompileBinaryNameTemplate
.WithGoOptions(goOpts ...spellGo.Option) gox.Option
— sets shared Go toolchain command options.WithGoBuildOptions(goBuildOpts ...spellGoBuild.Option) gox.Option
— sets options for the Go toolchainbuild
command.WithModulePath(path string) gox.Option
— sets thegox
module command import path. Defaults togox.DefaultGoModulePath
.WithModuleVersion(version *semver.Version) gox.Option
— sets thegox
module version. Defaults togox.DefaultGoModuleVersion
.WithVerboseOutput(verbose bool) gox.Option
— indicates whether the output should be verbose.
Spell mixins for Go toolchain options — #37 ⇄ #38 (⊶ d5a189b)
↠ To support common use cases for debugging and production optimization, some spell mixins have been implemented in the golang package:
- 🆂
MixinImproveDebugging
— Astruct
type that adds linker flags to improve the debugging of binary artifacts. This includes the disabling of inlining and all compiler optimizations tp improve the compatibility for debuggers.
Note that this mixin will add theall
prefix for—gcflags
parameters to make sure all packages are affected. If you disabled theall
prefix on purpose you need to handle this conflict on your own, e.g. by creating more than one binary artifact each with different build options. - 🆂
MixinImproveEscapeAnalysis
— Astruct
type that will add linker flags to improve the escape analysis of binary artifacts.
Note that this mixin removes theall
prefix for—gcflags
parameters to make sure only the target package is affected, otherwise reports for (traverse) dependencies would be included as well. If you enabled theall
prefix on purpose you need to handle this conflict on your own, e.g. by creating more than one binary artifact each with different build options. - 🆂
MixinStripDebugMetadata
— Astruct
type that will add linker flags to strip debug information from binary artifacts. This will include DWARF tables needed for debuggers, but keeps annotations needed for stack traces so panics are still readable. It will also shrink the file size and memory overhead as well as reducing the chance for possible security related problems due to enabled development features or debug information leaks.
Note that this mixin will add theall
prefix for—gcflags
parameters to make sure all packages are affected. If you disabled theall
prefix on purpose you need to handle this conflict on your own, e.g. by creating more than one binary artifact each with different build options. - 🆂
MixinInjectBuildTimeVariableValues
— Astruct
type that will inject build—time values through the—X
linker flags to populate e.g. application metadata variables.
It will store amap[string]string
of key/value pairs to inject to variables at build—time. The key must be the path to the variable in form of<IMPORT_PATH>.<VARIABLE_NAME>
, e.g.pkg/internal/support/app.version
. The value is the actual value that will be assigned to the variable, e.g. the application version.
A field of type*project.GoModuleID
will store partial information about the target Go module to inject the key/value pairs from the data map into.
Go code spell for filesystem cleaning — #39 ⇄ #40 (⊶ 04a3aeb)
↠ To clean paths in a filesystem, like application specific output directories, a new GoCode
spell incantation is available in the new clean package that can be used without a caster.
The spell incantation provides the following methods:
Clean() ([]string, error)
— removes the configured paths. It returns an error of type*spell.ErrGoCode
for any error that occurs during the execution of the Go code.
The spell incantation is customizable through the following functions:
WithLimitToAppOutputDir(limitToAppOutputDir bool) clean.Option
— indicates whether only paths within the configured application output directory should be allowed.WithPaths(paths ...string) clean.Option
— sets the paths to remove. Note that only paths within the configured application output directory are allowed whenWithLimitToAppOutputDir
is enabled.
Wand reference implementation “elder“ — #41 ⇄ #42 (⊶ 6397641)
↠ The default way to use the wand API, with its casters and spells, is the reference implementation “elder“.
It provides a way to use all wand spells and additionally comes with helper methods to bootstrap a project, validate all casters and simplify logging for process exits:
Bootstrap() error
— runs initialization tasks to ensure the wand is operational. This includes the installation of configured caster likecast.BinaryCaster
that can handle spell incantations of kindspell.KindGoModule
.Clean(appName string, opts ...clean.Option) ([]string, error)
— aspell.GoCode
to remove configured filesystem paths, e.g. output data like artifacts and reports from previous development, test, production and distribution builds. It returns paths that have been cleaned along with an error of type*spell.ErrGoCode
when an error occurred during the execution of the Go code. When any error occurs it will be of type*app.ErrApp
or*cast.ErrCast
. See the clean package for all available options.ExitPrintf(code int, verb nib.Verbosity, format string, args ...interface{})
— simplifies the logging for process exits with a suitablenib.Verbosity
.GetAppConfig(name string) (app.Config, error)
— returns an application configuration. An empty application configuration is returned along with an error of type*app.ErrApp
when there is no configuration in the store for the given name.GetProjectMetadata() project.Metadata
— returns metadata of the project.GoBuild(appName string, opts ...build.Option)
— casts the spell incantation for thebuild
command of the Go toolchain. When any error occurs it will be of type*app.ErrApp
or*cast.ErrCast
. See the build package for all available options.Goimports(appName string, opts ...goimports.Option) error
— casts the spell incantation for the golang.org/x/tools/cmd/goimports Go module command that allows to update Go import lines, add missing ones and remove unreferenced ones. It also formats code in the same style asgofmt
command so it can be used as a replacement. When any error occurs it will be of type*app.ErrApp
or*cast.ErrCast
.
See the goimports package for all available options. For more details aboutgoimports
see the module documentation. The source code ofgoimports
is available in the GitHub repository.GolangCILint(appName string, opts ...golangcilint.Option) error
— casts the spell incantation for the github.com/golangci/golangci-lint/cmd/golangci-lint Go module command, a fast, parallel runner for dozens of Go linters Go that uses caching, supports YAML configurations and has integrations with all major IDEs. When any error occurs it will be of type*app.ErrApp
or*cast.ErrCast
. See the golangcilint package for all available options.
For more details aboutgolangci-lint
see the module documentation and the official website. The source code ofgolangci-lint
is available in the GitHub repository.GoTest(appName string, opts ...spellGoTest.Option) error
— casts the spell incantation for thetest
command of the Go toolchain. When any error occurs it will be of type*app.ErrApp
or*cast.ErrCast
. See the test package for all available options.Gox(appName string, opts ...spellGox.Option) error
— casts the spell incantation for the github.com/mitchellh/gox Go module command, a dead simple, no frills Go cross compile tool that behaves a lot like the standard Go toolchainbuild
command. When any error occurs it will be of type*app.ErrApp
or*cast.ErrCast
. See the gox package for all available options.
For more details aboutgox
see the module documentation. The source code ofgox
is available in the GitHub repository.RegisterApp(name, displayName, pathRel string) error
— creates and stores a new application configuration. Note that the package path must be relative to the project root directory!
It returns an error of type *app.ErrApp when the application path is not relative to the project root directory, when it is not a subdirectory of it or when any other error occurs.Validate() error
— ensures that all casters are properly initialized and available. It returns an error of type *cast.ErrCast when the validation of any of the supported casters fails.New(opts ...Option) (*Elder, error)
— creates a new elder wand.
The module name is determined automatically using theruntime/debug
package. The absolute path to the root directory is automatically set based on the current working directory. Note that the working directory must be set manually when the “magefile“ is not placed in the root directory by pointing Mage to it:-d <PATH>
option to set the directory from which “magefiles“ are read (defaults to.
).-w <PATH>
option to set the working directory where “magefiles“ will run (defaults to value of-d
flag).
If any error occurs it will be of type *cast.ErrCast or *project.ErrProject.
It is customizable through the following functions:
WithGobinCasterOptions(opts ...castGobin.Option) elder.Option
— sets “gobin“ caster options.WithGoToolchainCasterOptions(opts ...castGoToolchain.Option) elder.Option
— sets Go toolchain caster options.WithNib(n nib.Nib) elder.Option
— sets the log-level based line printer for human-facing messages.WithProjectOptions(opts ...project.Option) elder.Option
— sets project options.
Initial project documentation — #43 ⇄ #44 (⊶ c953c4b)
↠ The initial project documentation includes…
- …an overview of the project features.
- …information about the project motivation:
- “Why should I use Mage…“
- “…and why wand?“
- …the project design decisions and how to use it:
- The overall wording and inspiration.
- A basic overview of the API.
- An introduction to the “elder“ reference implementation.
- …information about how to contribute to this project.
The full changelog is available in the repository
Copyright © 2019-present Sven Greb