tests: enable mount cache test, fix mount component test

Related to #46

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi
2021-03-01 18:16:56 -08:00
parent 50e8b8c07d
commit 39a7ebd176
2 changed files with 20 additions and 14 deletions

View File

@@ -11,15 +11,21 @@ test: {
{
do: "exec"
args: ["sh", "-c", """
ls -lA /lol > /out
cat /mnt/test/lol > /out
"""]
dir: "/"
mount: something: {
input: dagger: #compute: [{
do: "fetch-container"
ref: "alpine"
}]
path: "/lol"
mount: "/mnt/test": {
from: #dagger: compute: [
{
do: "fetch-container"
ref: "alpine"
},
{
do: "exec"
args: ["sh", "-c", """
echo -n "hello world" > /lol
"""]
}
]
}
},
{