7a77466a66
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
52 lines
662 B
CUE
52 lines
662 B
CUE
package testing
|
|
|
|
A: {
|
|
result: string
|
|
|
|
#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
|
|
|
|
#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"
|
|
},
|
|
]
|
|
}
|