e301dfa7b1
Signed-off-by: dubo-dubon-duponey <dubodubonduponey+github@pm.me>
22 lines
331 B
CUE
22 lines
331 B
CUE
package testing
|
|
|
|
bar: string
|
|
|
|
#dagger: compute: [
|
|
{
|
|
do: "fetch-container"
|
|
ref: "alpine"
|
|
},
|
|
{
|
|
do: "exec"
|
|
args: ["sh", "-c", """
|
|
echo "foo: $foo"
|
|
[ "$foo" == "overlay environment" ] || exit 1
|
|
"""]
|
|
env: foo: bar
|
|
always: true
|
|
// XXX Blocked by https://github.com/blocklayerhq/dagger/issues/19
|
|
dir: "/"
|
|
},
|
|
]
|