52 lines
678 B
CUE
52 lines
678 B
CUE
|
package testing
|
||
|
|
||
|
A: {
|
||
|
result: string
|
||
|
|
||
|
#dagger: compute: [
|
||
|
{
|
||
|
do: "fetch-container"
|
||
|
ref: "alpine"
|
||
|
},
|
||
|
{
|
||
|
do: "exec"
|
||
|
args: ["sh", "-c", """
|
||
|
echo '{"result": "from A"}' > /tmp/out
|
||
|
""",
|
||
|
]
|
||
|
dir: "/"
|
||
|
},
|
||
|
{
|
||
|
do: "export"
|
||
|
// Source path in the container
|
||
|
source: "/tmp/out"
|
||
|
format: "json"
|
||
|
},
|
||
|
]
|
||
|
}
|
||
|
|
||
|
B: {
|
||
|
result: string
|
||
|
|
||
|
#dagger: compute: [
|
||
|
{
|
||
|
do: "fetch-container"
|
||
|
ref: "alpine"
|
||
|
},
|
||
|
{
|
||
|
do: "exec"
|
||
|
args: ["sh", "-c", """
|
||
|
echo "{\\"result\\": \\"dependency \(A.result)\\"}" > /tmp/out
|
||
|
""",
|
||
|
]
|
||
|
dir: "/"
|
||
|
},
|
||
|
{
|
||
|
do: "export"
|
||
|
// Source path in the container
|
||
|
source: "/tmp/out"
|
||
|
format: "json"
|
||
|
},
|
||
|
]
|
||
|
}
|