golang
A utility module for building, testing, and linting Go projectsInstallation
dagger install github.com/dannyhorvath0/dagger-modules/golang@6043d4c996c9e493743591b68ecc26cb9ba265d9
Entrypoint
Return Type
Golang !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
ctr | Container | - | No description provided |
proj | Directory | - | No description provided |
Example
func (m *myModule) example() *Golang {
return dag.
Golang()
}
Types
Golang 🔗
build() 🔗
Build the Go project
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory | - | The Go source code to build |
args | [String ! ] ! | - | Arguments to `go build` |
arch | String | - | The architecture for GOARCH |
os | String | - | The operating system for GOOS |
Example
func (m *myModule) example(args []string) *Directory {
return dag.
Golang().
Build(args)
}
testdebug() 🔗
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
component | String ! | - | No description provided |
timeout | String ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory | - | The Go source code to test |
component | String | - | Arguments to `go test` +default "./..." |
coverageLocation | String | - | Generate a coverprofile or not at a location +default ./ |
timeout | String | - | Timeout for go +default "180s" |
Example
func (m *myModule) example(ctx context.Context) string {
return dag.
Golang().
Test(ctx)
}
attach() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
container | Container ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
dockerVersion | String | "24.0" | No description provided |
Example
func (m *myModule) example() *Service {
return dag.
Golang().
Service()
}
vulncheck() 🔗
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory | - | The Go source code to lint |
component | String | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory | - | The Go source code to lint |
component | String | - | Workdir to run golangci-lint +default "./..." |
timeout | String | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
version | String ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
dir | Directory ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
ctr | Container ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
remote | String ! | - | No description provided |
ref | String ! | - | No description provided |
module | String ! | - | No description provided |
arch | String | - | No description provided |
platform | String | - | No description provided |
Example
func (m *myModule) example(remote string, ref string, module string) *Directory {
return dag.
Golang().
BuildRemote(remote, ref, module)
}