Fix ./ci to be workdir-independent

Signed-off-by: Solomon Hykes <solomon@dagger.io>
This commit is contained in:
Solomon Hykes 2022-03-11 09:06:00 +00:00
parent aacabb1393
commit 860759448d
6 changed files with 18 additions and 12 deletions

View File

@ -1 +0,0 @@
../../../pkg/dagger.io

View File

@ -1 +0,0 @@
../../../pkg/universe.dagger.io

View File

@ -13,15 +13,7 @@ dagger.#Plan & {
// platform: "linux/aarch64"
platform: "linux/amd64"
client: filesystem: {
"../": read: exclude: [
"ci",
"node_modules",
"cmd/dagger/dagger",
"cmd/dagger/dagger-debug",
]
"./build": write: contents: actions.build.export.directories["/build"]
}
client: filesystem: "./build": write: contents: actions.build.export.directories["/build"]
actions: {
_mountGoCache: {
@ -36,7 +28,7 @@ dagger.#Plan & {
_mountSourceCode: {
mounts: "dagger source code": {
contents: client.filesystem."../".read.contents
contents: _source.output
dest: "/usr/src/dagger"
}
workdir: mounts["dagger source code"].dest

1
cue.mod/pkg Symbolic link
View File

@ -0,0 +1 @@
../pkg

15
source.cue Normal file
View File

@ -0,0 +1,15 @@
package main
import (
"dagger.io/dagger"
)
_source: dagger.#Source & {
path: "."
exclude: [
"ci",
"node_modules",
"cmd/dagger/dagger",
"cmd/dagger/dagger-debug",
]
}