21 lines
302 B
CUE
21 lines
302 B
CUE
|
package testing
|
||
|
|
||
|
hello: "world"
|
||
|
bar: string
|
||
|
|
||
|
#dagger: compute: [
|
||
|
{
|
||
|
do: "fetch-container"
|
||
|
ref: "alpine"
|
||
|
},
|
||
|
{
|
||
|
do: "exec"
|
||
|
dir: "/"
|
||
|
args: ["sh", "-c", """
|
||
|
echo \(hello)
|
||
|
echo "This test SHOULD fail, because this script SHOULD execute, since bar is not referenced"
|
||
|
exit 1
|
||
|
"""]
|
||
|
},
|
||
|
]
|