c16455249e
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
26 lines
289 B
CUE
26 lines
289 B
CUE
package testing
|
|
|
|
test: {
|
|
number
|
|
|
|
#up: [
|
|
{
|
|
do: "fetch-container"
|
|
ref: "alpine"
|
|
},
|
|
{
|
|
do: "exec"
|
|
args: ["sh", "-c", """
|
|
echo -123.5 > /tmp/out
|
|
""",
|
|
]
|
|
},
|
|
{
|
|
do: "export"
|
|
// Source path in the container
|
|
source: "/tmp/out"
|
|
format: "json"
|
|
},
|
|
]
|
|
}
|