d7a805f42b
Signed-off-by: Solomon Hykes <solomon@dagger.io>
17 lines
262 B
CUE
17 lines
262 B
CUE
package testing
|
|
|
|
import "alpha.dagger.io/dagger/op"
|
|
|
|
#up: [
|
|
op.#FetchContainer & {
|
|
ref: "alpine"
|
|
},
|
|
op.#Exec & {
|
|
args: ["sh", "-c", """
|
|
echo "pwd is: $(pwd)"
|
|
[ "$(pwd)" == "/thisisnonexistent" ] || exit 1
|
|
"""]
|
|
dir: "/thisisnonexistent"
|
|
},
|
|
]
|