common
This module has been generated via dagger init and serves as a reference tobasic 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
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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
mod | Directory ! | - | No description provided |
Example
func (m *myModule) example(mod *Directory) *Directory {
return dag.
Common().
EmbeddedWorkflows(mod)
}
goDistribution() 🔗
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
version | String | - | No description provided |
arch | String | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
tarball | File ! | - | No description provided |
Example
func (m *myModule) example(tarball *File) *Directory {
return dag.
Common().
Untar(tarball)
}
ubi() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
tag | String | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
cgo | Boolean | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
race | Boolean | - | No description provided |
database | Service | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
race | Boolean | - | No description provided |
cover | Boolean | - | No description provided |
unit | Boolean | - | No description provided |
database | Service | - | No description provided |
Example
func (m *myModule) example(ctx context.Context, source *Directory) string {
return dag.
Common().
Test(ctx, source)
}