ci
No long description provided.
Installation
dagger install github.com/openmeterio/openmeter@c67371fab6f4bc4549cb1bfcbaf1c9f40eed2e00
Entrypoint
Return Type
Ci !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory | - | Project source directory. |
ref | String | - | Checkout the repository (at the designated ref) and use it as the source directory instead of the local one. |
Example
func (m *myModule) example() *Ci {
return dag.
Ci()
}
Types
Ci 🔗
etoe() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
test | String | - | No description provided |
Example
func (m *myModule) example() *Container {
return dag.
Ci().
Etoe()
}
build() 🔗
Build individual artifacts. (Useful for testing and development)
Return Type
Build !
Example
func (m *myModule) example() *CiBuild {
return dag.
Ci().
Build()
}
ci() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Ci().
Ci(ctx)
}
test() 🔗
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
Ci().
Test()
}
release() 🔗
Return Type
Void !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
version | String ! | - | No description provided |
githubActor | String ! | - | No description provided |
githubToken | Secret ! | - | No description provided |
Example
func (m *myModule) example(ctx context.Context, version string, githubActor string, githubToken *Secret) {
return dag.
Ci().
Release(ctx, version, githubActor, githubToken)
}
lint() 🔗
Return Type
Lint !
Example
func (m *myModule) example() *CiLint {
return dag.
Ci().
Lint()
}
Build 🔗
all() 🔗
Return Type
Void !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
platform | String | - | Target platform in "[os]/[platform]/[version]" format (e.g., "darwin/arm64/v7", "windows/amd64", "linux/arm64"). |
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Ci().
Build().
All(ctx)
}
containerImage() 🔗
Build a container image.
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
platform | String | - | Target platform in "[os]/[platform]/[version]" format (e.g., "darwin/arm64/v7", "windows/amd64", "linux/arm64"). |
Example
func (m *myModule) example() *Container {
return dag.
Ci().
Build().
ContainerImage()
}
binary() 🔗
Build binaries.
Return Type
Binary !
Example
func (m *myModule) example() *CiBinary {
return dag.
Ci().
Build().
Binary()
}
helmChart() 🔗
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
name | String ! | - | Name of the chart to build. |
version | String | - | Release version. |
Example
func (m *myModule) example(name string) *File {
return dag.
Ci().
Build().
HelmChart(name)
}
Lint 🔗
source() 🔗
Return Type
Directory !
Example
func (m *myModule) example() *Directory {
return dag.
Ci().
Lint().
Source()
}
all() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Ci().
Lint().
All(ctx)
}
go() 🔗
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
Ci().
Lint().
Go()
}
openapi() 🔗
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
Ci().
Lint().
Openapi()
}
Binary 🔗
all() 🔗
Build all binaries.
Return Type
Void !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
platform | String | - | Target platform in "[os]/[platform]/[version]" format (e.g., "darwin/arm64/v7", "windows/amd64", "linux/arm64"). |
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Ci().
Build().
Binary().
All(ctx)
}
api() 🔗
Build the API server binary.
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
platform | String | - | Target platform in "[os]/[platform]/[version]" format (e.g., "darwin/arm64/v7", "windows/amd64", "linux/arm64"). |
Example
func (m *myModule) example() *File {
return dag.
Ci().
Build().
Binary().
Api()
}
sinkWorker() 🔗
Build the sink worker binary.
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
platform | String | - | Target platform in "[os]/[platform]/[version]" format (e.g., "darwin/arm64/v7", "windows/amd64", "linux/arm64"). |
Example
func (m *myModule) example() *File {
return dag.
Ci().
Build().
Binary().
SinkWorker()
}
benthosCollector() 🔗
Build the sink worker binary.
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
platform | String | - | Target platform in "[os]/[platform]/[version]" format (e.g., "darwin/arm64/v7", "windows/amd64", "linux/arm64"). |
Example
func (m *myModule) example() *File {
return dag.
Ci().
Build().
Binary().
BenthosCollector()
}