go-dagger
This module has been generated via dagger init and serves as a reference to basic module structure as you get started with Dagger.Two functions have been pre-created. You can modify, delete, or add to them, as needed. They demonstrate usage of arguments and return types using simple echo and grep commands. The functions can be called from the dagger CLI or from one of the SDKs.
The first line in this comment block is a short description line and the rest is a long description with more detail on the module's purpose or usage, if appropriate. All modules should have a short description.
Installation
dagger install github.com/felipecruz91/daggerverse/go@7e62a72c84a5e19c58637ee50a22a36dd096f555
Entrypoint
Return Type
GoDagger
Example
dagger -m github.com/felipecruz91/daggerverse/go@7e62a72c84a5e19c58637ee50a22a36dd096f555 call \
func (m *myModule) example() *GoDagger {
return dag.
GoDagger()
}
@function
def example() -> dag.GoDagger:
return (
dag.go_dagger()
)
@func()
example(): GoDagger {
return dag
.goDagger()
}
Types
GoDagger 🔗
test() 🔗
Test runs the Go tests
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | source is the directory containing the Go source code |
goVersion | String | "1.22.0" | goVersion is the version of Go to use for building the binary |
ignoreCache | Boolean | false | ignoreCache is a flag to ignore the cache |
race | Boolean | false | race is a flag to include Go's built-in data race detector |
verbose | Boolean | false | verbose is a flag to enable verbose output |
Example
dagger -m github.com/felipecruz91/daggerverse/go@7e62a72c84a5e19c58637ee50a22a36dd096f555 call \
test --source DIR_PATH
func (m *myModule) example(source *Directory) *Container {
return dag.
GoDagger().
Test(source)
}
@function
def example(source: dagger.Directory) -> dagger.Container:
return (
dag.go_dagger()
.test(source)
)
@func()
example(source: Directory): Container {
return dag
.goDagger()
.test(source)
}
dockerBuild() 🔗
DockerBuild packages the Go binary into a Docker container
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
bin | Directory ! | - | bin is the directory containing the cross-platform Go binaries |
goVersion | String | "1.22.0" | goVersion is the version of Go to use for building the binary |
platform | String | - | platform is the platform to build the binary for |
Example
dagger -m github.com/felipecruz91/daggerverse/go@7e62a72c84a5e19c58637ee50a22a36dd096f555 call \
docker-build --bin DIR_PATH
func (m *myModule) example(bin *Directory) *Container {
return dag.
GoDagger().
DockerBuild(bin)
}
@function
def example(bin: dagger.Directory) -> dagger.Container:
return (
dag.go_dagger()
.docker_build(bin)
)
@func()
example(bin: Directory): Container {
return dag
.goDagger()
.dockerBuild(bin)
}
build() 🔗
Build builds the Go binary for the specified go version and platforms
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | source is the directory containing the Go source code |
goVersion | String | "1.22.0" | goVersion is the version of Go to use for building the binary |
platforms | [String ! ] | ["linux/amd64", "linux/arm64"] | platforms is the list of platforms to build the binary for |
Example
dagger -m github.com/felipecruz91/daggerverse/go@7e62a72c84a5e19c58637ee50a22a36dd096f555 call \
build --source DIR_PATH
func (m *myModule) example(source *Directory) *Directory {
return dag.
GoDagger().
Build(source)
}
@function
def example(source: dagger.Directory) -> dagger.Directory:
return (
dag.go_dagger()
.build(source)
)
@func()
example(source: Directory): Directory {
return dag
.goDagger()
.build(source)
}