14 lines
182 B
CUE
14 lines
182 B
CUE
|
package testing
|
||
|
|
||
|
#dagger: compute: [
|
||
|
{
|
||
|
do: "fetch-container"
|
||
|
ref: "alpine"
|
||
|
},
|
||
|
{
|
||
|
do: "exec"
|
||
|
args: ["sh", "-c", "echo should not succeed"]
|
||
|
dir: "/thisisnonexistent"
|
||
|
},
|
||
|
]
|