I have multiple modules that have tests which no longer function in v0.13.5. Under artifactory I have:
{
"name": "artifactory",
"sdk": "go",
"exclude": [
"tests"
],
"source": ".",
"engineVersion": "v0.12.4"
}
And under artifactory/tests I have:
{
"name": "tests",
"sdk": "go",
"dependencies": [
{
"name": "artifactory",
"source": ".."
}
],
"source": ".",
"engineVersion": "v0.12.4"
}
In v0.13.0, I get:
dagger -m artifactory/tests functions
✔ connect 13.2s
✔ initialize 49.2s
Name Description
all -
artifactory-download -
artifactory-upload -
In v0.13.5, I get:
dagger -m artifactory/tests functions
✔ connect 1.7s
✘ initialize 0.6s
! input: module.withSource.initialize resolve: module name and SDK must be set
✔ resolving module ref 0.4s
✘ installing module 0.2s
! input: module.withSource.initialize resolve: module name and SDK must be set
✔ ModuleSource.resolveFromCaller: ModuleSource! 0.2s
✘ Module.initialize: Module! 0.0s
! module name and SDK must be set
Error: input: module.withSource.initialize resolve: module name and SDK must be set
Please help 😭
