Dagger
Search

ci

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Installation

dagger install github.com/csatib02/openmeter@07bd8a4830c1ae3753dd27f1118a28d9a5a506a9

Entrypoint

Return Type
Ci !
Arguments
NameTypeDescription
sourceDirectory Project source directory.
refString 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()
}
@function
def example() -> dag.Ci:
	return (
		dag.ci()
	)
@func()
example(): Ci {
	return dag
		.ci()
}

Types

Ci 🔗

build() 🔗

Build individual artifacts. (Useful for testing and development)

Return Type
Build !
Example
func (m *myModule) example() *CiBuild  {
	return dag.
			Ci().
			Build()
}
@function
def example() -> dag.CiBuild:
	return (
		dag.ci()
		.build()
	)
@func()
example(): CiBuild {
	return dag
		.ci()
		.build()
}

generate() 🔗

Generate various artifacts.

Return Type
Generate !
Example
func (m *myModule) example() *CiGenerate  {
	return dag.
			Ci().
			Generate()
}
@function
def example() -> dag.CiGenerate:
	return (
		dag.ci()
		.generate()
	)
@func()
example(): CiGenerate {
	return dag
		.ci()
		.generate()
}

ci() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Ci().
			Ci(ctx)
}
@function
async def example() -> None:
	return await (
		dag.ci()
		.ci()
	)
@func()
async example(): Promise<void> {
	return dag
		.ci()
		.ci()
}

test() 🔗

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Ci().
			Test()
}
@function
def example() -> dagger.Container:
	return (
		dag.ci()
		.test()
	)
@func()
example(): Container {
	return dag
		.ci()
		.test()
}

quickstartTest() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
serviceService !-No description provided
portInteger !8888No description provided
Example
func (m *myModule) example(service *Service, port int) *Container  {
	return dag.
			Ci().
			QuickstartTest(service, port)
}
@function
def example(service: dagger.Service, port: int) -> dagger.Container:
	return (
		dag.ci()
		.quickstart_test(service, port)
	)
@func()
example(service: Service, port: number): Container {
	return dag
		.ci()
		.quickstartTest(service, port)
}

etoe() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
testString -No description provided
Example
func (m *myModule) example() *Container  {
	return dag.
			Ci().
			Etoe()
}
@function
def example() -> dagger.Container:
	return (
		dag.ci()
		.etoe()
	)
@func()
example(): Container {
	return dag
		.ci()
		.etoe()
}

lint() 🔗

Return Type
Lint !
Example
func (m *myModule) example() *CiLint  {
	return dag.
			Ci().
			Lint()
}
@function
def example() -> dag.CiLint:
	return (
		dag.ci()
		.lint()
	)
@func()
example(): CiLint {
	return dag
		.ci()
		.lint()
}

snapshot() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
stainlessTokenSecret !-No description provided
Example
func (m *myModule) example(ctx context.Context, stainlessToken *Secret)   {
	return dag.
			Ci().
			Snapshot(ctx, stainlessToken)
}
@function
async def example(stainless_token: dagger.Secret) -> None:
	return await (
		dag.ci()
		.snapshot(stainless_token)
	)
@func()
async example(stainlessToken: Secret): Promise<void> {
	return dag
		.ci()
		.snapshot(stainlessToken)
}

release() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
versionString !-No description provided
githubActorString !-No description provided
githubTokenSecret !-No description provided
pypiTokenSecret !-No description provided
npmTokenSecret !-No description provided
Example
func (m *myModule) example(ctx context.Context, version string, githubActor string, githubToken *Secret, pypiToken *Secret, npmToken *Secret)   {
	return dag.
			Ci().
			Release(ctx, version, githubActor, githubToken, pypiToken, npmToken)
}
@function
async def example(version: str, github_actor: str, github_token: dagger.Secret, pypi_token: dagger.Secret, npm_token: dagger.Secret) -> None:
	return await (
		dag.ci()
		.release(version, github_actor, github_token, pypi_token, npm_token)
	)
@func()
async example(version: string, githubActor: string, githubToken: Secret, pypiToken: Secret, npmToken: Secret): Promise<void> {
	return dag
		.ci()
		.release(version, githubActor, githubToken, pypiToken, npmToken)
}

Build 🔗

all() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
platformScalar -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)
}
@function
async def example() -> None:
	return await (
		dag.ci()
		.build()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.ci()
		.build()
		.all()
}

containerImage() 🔗

Build a container image.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
platformScalar -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()
}
@function
def example() -> dagger.Container:
	return (
		dag.ci()
		.build()
		.container_image()
	)
@func()
example(): Container {
	return dag
		.ci()
		.build()
		.containerImage()
}

binary() 🔗

Build binaries.

Return Type
Binary !
Example
func (m *myModule) example() *CiBinary  {
	return dag.
			Ci().
			Build().
			Binary()
}
@function
def example() -> dag.CiBinary:
	return (
		dag.ci()
		.build()
		.binary()
	)
@func()
example(): CiBinary {
	return dag
		.ci()
		.build()
		.binary()
}

helmChart() 🔗

Return Type
File !
Arguments
NameTypeDefault ValueDescription
nameString !-Name of the chart to build.
versionString -Release version.
Example
func (m *myModule) example(name string) *File  {
	return dag.
			Ci().
			Build().
			HelmChart(name)
}
@function
def example(name: str) -> dagger.File:
	return (
		dag.ci()
		.build()
		.helm_chart(name)
	)
@func()
example(name: string): File {
	return dag
		.ci()
		.build()
		.helmChart(name)
}

Generate 🔗

pythonSdk() 🔗

Generate the Python SDK.

Return Type
Directory !
Example
func (m *myModule) example() *Directory  {
	return dag.
			Ci().
			Generate().
			PythonSdk()
}
@function
def example() -> dagger.Directory:
	return (
		dag.ci()
		.generate()
		.python_sdk()
	)
@func()
example(): Directory {
	return dag
		.ci()
		.generate()
		.pythonSdk()
}

nodeSdk() 🔗

Generate the Node SDK.

Return Type
Directory !
Example
func (m *myModule) example() *Directory  {
	return dag.
			Ci().
			Generate().
			NodeSdk()
}
@function
def example() -> dagger.Directory:
	return (
		dag.ci()
		.generate()
		.node_sdk()
	)
@func()
example(): Directory {
	return dag
		.ci()
		.generate()
		.nodeSdk()
}

webSdk() 🔗

Generate the Web SDK.

Return Type
Directory !
Example
func (m *myModule) example() *Directory  {
	return dag.
			Ci().
			Generate().
			WebSdk()
}
@function
def example() -> dagger.Directory:
	return (
		dag.ci()
		.generate()
		.web_sdk()
	)
@func()
example(): Directory {
	return dag
		.ci()
		.generate()
		.webSdk()
}

Lint 🔗

source() 🔗

Return Type
Directory !
Example
func (m *myModule) example() *Directory  {
	return dag.
			Ci().
			Lint().
			Source()
}
@function
def example() -> dagger.Directory:
	return (
		dag.ci()
		.lint()
		.source()
	)
@func()
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)
}
@function
async def example() -> None:
	return await (
		dag.ci()
		.lint()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.ci()
		.lint()
		.all()
}

go() 🔗

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Ci().
			Lint().
			Go()
}
@function
def example() -> dagger.Container:
	return (
		dag.ci()
		.lint()
		.go()
	)
@func()
example(): Container {
	return dag
		.ci()
		.lint()
		.go()
}

openapi() 🔗

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Ci().
			Lint().
			Openapi()
}
@function
def example() -> dagger.Container:
	return (
		dag.ci()
		.lint()
		.openapi()
	)
@func()
example(): Container {
	return dag
		.ci()
		.lint()
		.openapi()
}

helm() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Ci().
			Lint().
			Helm(ctx)
}
@function
async def example() -> None:
	return await (
		dag.ci()
		.lint()
		.helm()
	)
@func()
async example(): Promise<void> {
	return dag
		.ci()
		.lint()
		.helm()
}

Binary 🔗

all() 🔗

Build all binaries.

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
platformScalar -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)
}
@function
async def example() -> None:
	return await (
		dag.ci()
		.build()
		.binary()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.ci()
		.build()
		.binary()
		.all()
}

api() 🔗

Build the API server binary.

Return Type
File !
Arguments
NameTypeDefault ValueDescription
platformScalar -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()
}
@function
def example() -> dagger.File:
	return (
		dag.ci()
		.build()
		.binary()
		.api()
	)
@func()
example(): File {
	return dag
		.ci()
		.build()
		.binary()
		.api()
}

sinkWorker() 🔗

Build the sink worker binary.

Return Type
File !
Arguments
NameTypeDefault ValueDescription
platformScalar -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()
}
@function
def example() -> dagger.File:
	return (
		dag.ci()
		.build()
		.binary()
		.sink_worker()
	)
@func()
example(): File {
	return dag
		.ci()
		.build()
		.binary()
		.sinkWorker()
}

benthosCollector() 🔗

Build the sink worker binary.

Return Type
File !
Arguments
NameTypeDefault ValueDescription
platformScalar -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()
}
@function
def example() -> dagger.File:
	return (
		dag.ci()
		.build()
		.binary()
		.benthos_collector()
	)
@func()
example(): File {
	return dag
		.ci()
		.build()
		.binary()
		.benthosCollector()
}