2024-07-03 20:54:33 -04:00
|
|
|
{
|
|
|
|
"tests": {
|
|
|
|
"root": {
|
|
|
|
"args": "task",
|
|
|
|
"output": "root.out",
|
2024-09-15 01:59:24 -04:00
|
|
|
"exitCode": 0
|
2024-07-03 20:54:33 -04:00
|
|
|
},
|
|
|
|
"package_a": {
|
|
|
|
"args": "task",
|
|
|
|
"cwd": "package-a",
|
|
|
|
"output": "package-a.out",
|
2024-09-15 01:59:24 -04:00
|
|
|
"exitCode": 0
|
2024-07-03 20:54:33 -04:00
|
|
|
},
|
|
|
|
"package_b": {
|
|
|
|
"args": "task",
|
|
|
|
"cwd": "package-b",
|
|
|
|
"output": "package-b.out",
|
2024-09-15 01:59:24 -04:00
|
|
|
"exitCode": 0
|
2024-07-03 20:54:33 -04:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"args": "task",
|
|
|
|
"cwd": "scripts",
|
|
|
|
"output": "scripts.out",
|
2024-09-15 01:59:24 -04:00
|
|
|
"exitCode": 0
|
2024-07-03 20:54:33 -04:00
|
|
|
},
|
|
|
|
"package_b_tasks": {
|
|
|
|
"steps": [{
|
|
|
|
"args": "task --quiet pkg-json-root",
|
|
|
|
"cwd": "package-b",
|
|
|
|
// uses the workspace as cwd
|
|
|
|
"output": "pkg-json [WILDLINE]workspace\n"
|
|
|
|
}, {
|
|
|
|
"args": "task --quiet pkg-json-root-2",
|
|
|
|
"cwd": "package-b",
|
|
|
|
// uses package-b as cwd
|
|
|
|
"output": "override [WILDLINE]package-b\n"
|
|
|
|
}, {
|
|
|
|
"args": "task --quiet echo-package-b",
|
|
|
|
"cwd": "package-b",
|
|
|
|
"output": "hi [WILDLINE]package-b\n"
|
|
|
|
}, {
|
|
|
|
"args": "task --quiet echo-root",
|
|
|
|
"cwd": "package-b",
|
|
|
|
"output": "override root [WILDLINE]package-b\n"
|
|
|
|
}, {
|
|
|
|
"args": "task --quiet echo-root",
|
|
|
|
"cwd": "package-a",
|
|
|
|
"output": "[WILDLINE]workspace\n"
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|