1f640d3e25
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
17 lines
257 B
CUE
17 lines
257 B
CUE
package testing
|
|
|
|
import "dagger.io/dagger/op"
|
|
|
|
#up: [
|
|
op.#FetchContainer & {
|
|
do: "fetch-container"
|
|
ref: "alpine"
|
|
},
|
|
op.#Exec & {
|
|
args: ["sh", "-c", """
|
|
[ "$foo" == "output environment" ] || exit 1
|
|
"""]
|
|
env: foo: "output environment"
|
|
},
|
|
]
|