Dagger
Search

golang

A utility module for building, testing, and linting Go projects

Installation

dagger install github.com/dannyhorvath0/dagger-modules/golang@6043d4c996c9e493743591b68ecc26cb9ba265d9

Entrypoint

Return Type
Golang !
Arguments
NameTypeDefault ValueDescription
ctrContainer -No description provided
projDirectory -No description provided
Example
func (m *myModule) example() *Golang  {
	return dag.
			Golang()
}

Types

Golang 🔗

build() 🔗

Build the Go project

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
sourceDirectory -The Go source code to build
args[String ! ] !-Arguments to `go build`
archString -The architecture for GOARCH
osString -The operating system for GOOS
Example
func (m *myModule) example(args []string) *Directory  {
	return dag.
			Golang().
			Build(args)
}

testdebug() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
componentString !-No description provided
timeoutString !-No description provided
Example
func (m *myModule) example(ctx context.Context, source *Directory, component string, timeout string) string  {
	return dag.
			Golang().
			Testdebug(ctx, source, component, timeout)
}

test() 🔗

Test the Go project

Return Type
String !
Arguments
NameTypeDefault ValueDescription
sourceDirectory -The Go source code to test
componentString -Arguments to `go test` +default "./..."
coverageLocationString -Generate a coverprofile or not at a location +default ./
timeoutString -Timeout for go +default "180s"
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Golang().
			Test(ctx)
}

attach() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
containerContainer !-No description provided
Example
func (m *myModule) example(container *Container) *Container  {
	return dag.
			Golang().
			Attach(container)
}

service() 🔗

Get a Service container running dockerd

Return Type
Service !
Arguments
NameTypeDefault ValueDescription
dockerVersionString "24.0"No description provided
Example
func (m *myModule) example() *Service  {
	return dag.
			Golang().
			Service()
}

vulncheck() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
sourceDirectory -The Go source code to lint
componentString -Workdir to run golangci-lint +default "./..."
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Golang().
			Vulncheck(ctx)
}

golangciLint() 🔗

Lint the Go project

Return Type
String !
Arguments
NameTypeDefault ValueDescription
sourceDirectory -The Go source code to lint
componentString -Workdir to run golangci-lint +default "./..."
timeoutString -Timeout for golangci-lint +default "5m"
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Golang().
			GolangciLint(ctx)
}

base() 🔗

Sets up the Container with a golang image and cache volumes

Return Type
Golang !
Arguments
NameTypeDefault ValueDescription
versionString !-No description provided
Example
func (m *myModule) example(version string) *Golang  {
	return dag.
			Golang().
			Base(version)
}

container() 🔗

The go build container

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Golang().
			Container()
}

project() 🔗

The go project directory

Return Type
Directory !
Example
func (m *myModule) example() *Directory  {
	return dag.
			Golang().
			Project()
}

withProject() 🔗

Specify the Project to use in the module

Return Type
Golang !
Arguments
NameTypeDefault ValueDescription
dirDirectory !-No description provided
Example
func (m *myModule) example(dir *Directory) *Golang  {
	return dag.
			Golang().
			WithProject(dir)
}

withContainer() 🔗

Bring your own container

Return Type
Golang !
Arguments
NameTypeDefault ValueDescription
ctrContainer !-No description provided
Example
func (m *myModule) example(ctr *Container) *Golang  {
	return dag.
			Golang().
			WithContainer(ctr)
}

buildRemote() 🔗

Build a remote git repo

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
remoteString !-No description provided
refString !-No description provided
moduleString !-No description provided
archString -No description provided
platformString -No description provided
Example
func (m *myModule) example(remote string, ref string, module string) *Directory  {
	return dag.
			Golang().
			BuildRemote(remote, ref, module)
}