A Dagger module for managing Dagger modules that use the built-in Dang SDK.
The Dagger CLI ships without built-in module-management commands like init
or develop. Those operations live in SDK-specific modules like this one,
called through dagger call.
Backed by github.com/dagger/sdk-sdk/polyfill.
From your workspace root:
dagger install github.com/dagger/dang-sdkAfter install, the module is available in dagger call as dang-sdk.
Calls that return a Changeset will print the diff and prompt you to confirm
before writing anything to your workspace.
Create a Dang SDK module under the nearest .dagger/modules/<name>/:
dagger call dang-sdk init --name my-modulePick a different location:
dagger call dang-sdk init --name my-module --path some/dir/my-moduleinit only seeds template files. Run mod ... generate to refresh generated
SDK files when generation produces any.
For a single module:
dagger call dang-sdk mod --path my-module generateFor every Dang SDK module in the workspace, skipping any with a
.dagger-dang-sdk-skip-generate marker at or above the module root:
dagger call dang-sdk generate-allList:
dagger call dang-sdk mod --path my-module deps listAdd:
dagger call dang-sdk mod --path my-module \
deps add --source github.com/some/moduleAdd with a custom local name:
dagger call dang-sdk mod --path my-module \
deps add --source github.com/some/module --name aliasRemove by name or source:
dagger call dang-sdk mod --path my-module deps remove --name aliasUpdate one remote dependency, or all of them:
dagger call dang-sdk mod --path my-module deps update
dagger call dang-sdk mod --path my-module deps update --name some-dep# Read the version pinned in dagger.json
dagger call dang-sdk mod --path my-module engine required
# Pin to a specific version
dagger call dang-sdk mod --path my-module engine require --version 0.20.8
# Pin to the engine version you're currently running
dagger call dang-sdk mod --path my-module engine require-current
# Pin to "latest"
dagger call dang-sdk mod --path my-module engine require-latestdagger call dang-sdk modules pathSee dang-sdk.dang for the full type surface.
To exclude a directory tree from generate-all, drop an empty
.dagger-dang-sdk-skip-generate file at or above the module root. Useful for
fixtures, vendored modules, or anything you do not want regenerated in bulk.
touch some/fixture/.dagger-dang-sdk-skip-generateRun shared SDK helper contract checks from this repository with:
dagger -m github.com/dagger/sdk-sdk checkRun this repo's e2e module with:
dagger -m .dagger/modules/e2e check