WIP: Fix Europa yarn

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi
2022-01-13 17:43:34 -08:00
committed by Sam Alba
parent ed8bb3f91b
commit c7ffdf788f
11 changed files with 137 additions and 32 deletions

View File

@@ -0,0 +1 @@
module: "dagger.io"

View File

@@ -7,7 +7,7 @@ package engine
// - A directory containing binary artifacts
// Rule of thumb: if it fits in a tar archive, it fits in a #FS.
#FS: {
$dagger: fs: _id: string | null
$dagger: fs: _id: !="" | null
}
// A reference to an external secret, for example:
@@ -17,7 +17,7 @@ package engine
// Secrets are never merged in the Cue tree. They can only be used
// by a special filesystem mount designed to minimize leak risk.
#Secret: {
$dagger: secret: _id: string
$dagger: secret: _id: !=""
}
// A reference to a network service endpoint, for example:
@@ -25,5 +25,5 @@ package engine
// - A unix or npipe socket
// - An HTTPS endpoint
#Service: {
$dagger: service: _id: string
$dagger: service: _id: !=""
}