Dagger
Search

go

No long description provided.

Installation

dagger install github.com/shykes/dagger/ci/std/go@d0e97b1df946cb44df1415ed0e3bf2b8c4e91d80

Entrypoint

Return Type
Go !
Arguments
NameTypeDescription
sourceDirectory !Project source directory
versionString Go version
Example
func (m *myModule) example(source *Directory) *Go  {
	return dag.
			Go(source)
}
@function
def example(source: dagger.Directory, ) -> dag.Go:
	return (
		dag.go(source)
	)
@func()
example(source: Directory, ): Go {
	return dag
		.go(source)
}

Types

Go 🔗

A Go project

version() 🔗

Go version

Return Type
String !
Example
func (m *myModule) example(ctx context.Context, source *Directory) string  {
	return dag.
			Go(source).
			Version(ctx)
}
@function
async def example(source: dagger.Directory, ) -> str:
	return await (
		dag.go(source)
		.version()
	)
@func()
async example(source: Directory, ): Promise<string> {
	return dag
		.go(source)
		.version()
}

source() 🔗

Project source directory

Return Type
Directory !
Example
func (m *myModule) example(source *Directory) *Directory  {
	return dag.
			Go(source).
			Source()
}
@function
def example(source: dagger.Directory, ) -> dagger.Directory:
	return (
		dag.go(source)
		.source()
	)
@func()
example(source: Directory, ): Directory {
	return dag
		.go(source)
		.source()
}

base() 🔗

Build a base container with Go installed and configured

Return Type
Container !
Example
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			Go(source).
			Base()
}
@function
def example(source: dagger.Directory, ) -> dagger.Container:
	return (
		dag.go(source)
		.base()
	)
@func()
example(source: Directory, ): Container {
	return dag
		.go(source)
		.base()
}

env() 🔗

Prepare a build environment for the given Go source code - Build a base container with Go tooling installed and configured - Mount the source code - Download dependencies

Return Type
Container !
Example
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			Go(source).
			Env()
}
@function
def example(source: dagger.Directory, ) -> dagger.Container:
	return (
		dag.go(source)
		.env()
	)
@func()
example(source: Directory, ): Container {
	return dag
		.go(source)
		.env()
}

lint() 🔗

Lint the project

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
pkgs[String ! ] !-No description provided
allBoolean -No description provided
Example
func (m *myModule) example(ctx context.Context, source *Directory, pkgs []string)   {
	return dag.
			Go(source).
			Lint(ctx, pkgs)
}
@function
async def example(source: dagger.Directory, pkgs: List[str]) -> None:
	return await (
		dag.go(source)
		.lint(pkgs)
	)
@func()
async example(source: Directory, pkgs: string[]): Promise<void> {
	return dag
		.go(source)
		.lint(pkgs)
}