Dagger
Search

common

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/quay/clair-workflows/common@0d98fadb3264c4ea93064a1d30de153681e3a345

Entrypoint

Return Type
Common
Example
func (m *myModule) example() *Common  {
	return dag.
			Common()
}

Types

Common 🔗

dhall() 🔗

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Common().
			Dhall()
}

compileDhall() 🔗

CompileDhall returns the results of dhall-to-yaml called on all *.dhall files in “source”, with the common dhall helpers mounted on ./lib.

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
func (m *myModule) example(source *Directory) *Directory  {
	return dag.
			Common().
			CompileDhall(source)
}

actions() 🔗

Return Type
Directory !
Example
func (m *myModule) example() *Directory  {
	return dag.
			Common().
			Actions()
}

embeddedWorkflows() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
modDirectory !-No description provided
Example
func (m *myModule) example(mod *Directory) *Directory  {
	return dag.
			Common().
			EmbeddedWorkflows(mod)
}

goDistribution() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
versionString -No description provided
archString -No description provided
Example
func (m *myModule) example() *Directory  {
	return dag.
			Common().
			GoDistribution()
}

goVersions() 🔗

Return Type
File !
Example
func (m *myModule) example() *File  {
	return dag.
			Common().
			GoVersions()
}

untar() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
tarballFile !-No description provided
Example
func (m *myModule) example(tarball *File) *Directory  {
	return dag.
			Common().
			Untar(tarball)
}

ubi() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
tagString -No description provided
Example
func (m *myModule) example() *Container  {
	return dag.
			Common().
			Ubi()
}

builder() 🔗

The base image for use with claircore.

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Common().
			Builder()
}

buildEnv() 🔗

Create an environment suitable for building the indicated source.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
cgoBoolean -No description provided
Example
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			Common().
			BuildEnv(source)
}

releaseEnv() 🔗

Create an environment suitable for building the indicated source for release.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			Common().
			ReleaseEnv(source)
}

testEnv() 🔗

Create an environment suitable for testing the indicated source.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
raceBoolean -No description provided
databaseService -No description provided
Example
func (m *myModule) example(source *Directory) *Container  {
	return dag.
			Common().
			TestEnv(source)
}

test() 🔗

Return the result of running tests on the indicated source.

Return Type
String !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
raceBoolean -No description provided
coverBoolean -No description provided
unitBoolean -No description provided
databaseService -No description provided
Example
func (m *myModule) example(ctx context.Context, source *Directory) string  {
	return dag.
			Common().
			Test(ctx, source)
}