Merge pull request #1424 from aluzzardi/fix-yarn
Europa yarn fixes and tests
This commit is contained in:
commit
44335b5818
1
pkg/dagger.io/cue.mod/module.cue
Normal file
1
pkg/dagger.io/cue.mod/module.cue
Normal file
@ -0,0 +1 @@
|
|||||||
|
module: "dagger.io"
|
@ -22,12 +22,14 @@ let defaultVersion = "3.13.5@sha256:69e70a79f2d41ab5d637de98c1e0b055206ba40a8145
|
|||||||
source: "index.docker.io/alpine:\(version)"
|
source: "index.docker.io/alpine:\(version)"
|
||||||
},
|
},
|
||||||
for pkgName, pkg in packages {
|
for pkgName, pkg in packages {
|
||||||
run: cmd: {
|
docker.#Run & {
|
||||||
name: "apk"
|
cmd: {
|
||||||
args: ["add", "\(pkgName)\(version)"]
|
name: "apk"
|
||||||
flags: {
|
args: ["add", "\(pkgName)\(pkg.version)"]
|
||||||
"-U": true
|
flags: {
|
||||||
"--no-cache": true
|
"-U": true
|
||||||
|
"--no-cache": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
5
pkg/universe.dagger.io/cue.mod/pkg/.gitignore
vendored
Normal file
5
pkg/universe.dagger.io/cue.mod/pkg/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# generated by dagger
|
||||||
|
dagger.lock
|
||||||
|
alpha.dagger.io
|
||||||
|
dagger.io
|
||||||
|
universe.dagger.io
|
@ -1 +0,0 @@
|
|||||||
../../../stdlib
|
|
80
pkg/universe.dagger.io/yarn/test/yarn-test.cue
Normal file
80
pkg/universe.dagger.io/yarn/test/yarn-test.cue
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
package yarn
|
||||||
|
|
||||||
|
import (
|
||||||
|
"dagger.io/dagger"
|
||||||
|
"dagger.io/dagger/engine"
|
||||||
|
|
||||||
|
"universe.dagger.io/yarn"
|
||||||
|
// "universe.dagger.io/alpine"
|
||||||
|
// "universe.dagger.io/bash"
|
||||||
|
)
|
||||||
|
|
||||||
|
dagger.#Plan & {
|
||||||
|
inputs: directories: {
|
||||||
|
testdata: path: "./testdata"
|
||||||
|
testdata2: path: "./testdata2"
|
||||||
|
}
|
||||||
|
|
||||||
|
actions: {
|
||||||
|
TestReact: {
|
||||||
|
cache: engine.#CacheDir & {
|
||||||
|
id: "yarn cache"
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg: yarn.#Build & {
|
||||||
|
source: inputs.directories.testdata.contents
|
||||||
|
"cache": cache
|
||||||
|
}
|
||||||
|
|
||||||
|
_image: engine.#Pull & {
|
||||||
|
source: "alpine:3.15.0@sha256:e7d88de73db3d3fd9b2d63aa7f447a10fd0220b7cbf39803c803f2af9ba256b3"
|
||||||
|
}
|
||||||
|
|
||||||
|
// FIXME: use bash.#Script
|
||||||
|
test: engine.#Exec & {
|
||||||
|
input: _image.output
|
||||||
|
mounts: build: {
|
||||||
|
dest: "/build"
|
||||||
|
contents: pkg.output
|
||||||
|
}
|
||||||
|
args: [
|
||||||
|
"sh", "-c",
|
||||||
|
#"""
|
||||||
|
test "$(cat /build/test)" = "output"
|
||||||
|
"""#,
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// FIXME: re-enable?
|
||||||
|
// TestSecretsAndFile: {
|
||||||
|
// pkg: #Package & {
|
||||||
|
// source: inputs.directories.testdata2
|
||||||
|
// writeEnvFile: "/.env"
|
||||||
|
// env: {
|
||||||
|
// one: "one"
|
||||||
|
// two: "two"
|
||||||
|
// }
|
||||||
|
// secrets: {
|
||||||
|
// secretone: dagger.#Secret @dagger(input)
|
||||||
|
// secretwo: dagger.#Secret @dagger(input)
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// test: os.#Container & {
|
||||||
|
// image: alpine.#Image & {
|
||||||
|
// package: bash: true
|
||||||
|
// }
|
||||||
|
// shell: path: "/bin/bash"
|
||||||
|
// mount: "/build": from: pkg.build
|
||||||
|
// command: """
|
||||||
|
// content="$(cat /build/env)"
|
||||||
|
// [[ "${content}" = *"SECRETONE="* ]] && \\
|
||||||
|
// [[ "${content}" = *"SECRETWO="* ]] && \\
|
||||||
|
// [[ "${content}" = *"ONE=one"* ]] && \\
|
||||||
|
// [[ "${content}" = *"TWO=two"* ]]
|
||||||
|
// """
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
}
|
@ -1,11 +0,0 @@
|
|||||||
package yarn
|
|
||||||
|
|
||||||
import (
|
|
||||||
"dagger.io/dagger/engine"
|
|
||||||
)
|
|
||||||
|
|
||||||
b: #Build & {
|
|
||||||
source: engine.#Scratch
|
|
||||||
}
|
|
||||||
|
|
||||||
out: b.output
|
|
@ -30,28 +30,51 @@ import (
|
|||||||
// Run this yarn script
|
// Run this yarn script
|
||||||
script: string | *"build"
|
script: string | *"build"
|
||||||
|
|
||||||
|
// Fix for shadowing issues
|
||||||
|
let yarnScript = script
|
||||||
|
|
||||||
|
// Cache to use, passed by the caller
|
||||||
|
cache: engine.#CacheDir
|
||||||
|
|
||||||
// Optional arguments for the script
|
// Optional arguments for the script
|
||||||
args: [...string] | *[]
|
args: [...string] | *[]
|
||||||
|
|
||||||
// Secret variables
|
// Secret variables
|
||||||
|
// FIXME: not implemented. Are they needed?
|
||||||
secrets: [string]: dagger.#Secret
|
secrets: [string]: dagger.#Secret
|
||||||
|
|
||||||
|
// FIXME: Yarn's version depends on Alpine's version
|
||||||
// Yarn version
|
// Yarn version
|
||||||
yarnVersion: *"=~1.22" | string
|
// yarnVersion: *"=~1.22" | string
|
||||||
|
|
||||||
|
// FIXME: custom base image not supported
|
||||||
|
image: alpine.#Build & {
|
||||||
|
packages: {
|
||||||
|
bash: {}
|
||||||
|
yarn: {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Run yarn in a containerized build environment
|
// Run yarn in a containerized build environment
|
||||||
command: bash.#Run & {
|
command: bash.#Run & {
|
||||||
*{
|
// FIXME: not working?
|
||||||
image: (alpine.#Build & {
|
// *{
|
||||||
bash: version: "=~5.1"
|
// _image: alpine.#Build & {
|
||||||
yarn: version: yarnVersion
|
// packages: {
|
||||||
}).image
|
// bash: version: "=~5.1"
|
||||||
env: CUSTOM_IMAGE: "0"
|
// yarn: version: yarnVersion
|
||||||
} | {
|
// }
|
||||||
env: CUSTOM_IMAGE: "1"
|
// }
|
||||||
}
|
|
||||||
|
|
||||||
script: """
|
// image: _image.output
|
||||||
|
// env: CUSTOM_IMAGE: "0"
|
||||||
|
// } | {
|
||||||
|
// env: CUSTOM_IMAGE: "1"
|
||||||
|
// }
|
||||||
|
|
||||||
|
"image": image.output
|
||||||
|
|
||||||
|
script: #"""
|
||||||
# Create $ENVFILE_NAME file if set
|
# Create $ENVFILE_NAME file if set
|
||||||
[ -n "$ENVFILE_NAME" ] && echo "$ENVFILE" > "$ENVFILE_NAME"
|
[ -n "$ENVFILE_NAME" ] && echo "$ENVFILE" > "$ENVFILE_NAME"
|
||||||
|
|
||||||
@ -60,12 +83,12 @@ import (
|
|||||||
opts=( $(echo $YARN_ARGS) )
|
opts=( $(echo $YARN_ARGS) )
|
||||||
yarn --cwd "$YARN_CWD" run "$YARN_BUILD_SCRIPT" ${opts[@]}
|
yarn --cwd "$YARN_CWD" run "$YARN_BUILD_SCRIPT" ${opts[@]}
|
||||||
mv "$YARN_BUILD_DIRECTORY" /build
|
mv "$YARN_BUILD_DIRECTORY" /build
|
||||||
"""
|
"""#
|
||||||
|
|
||||||
mounts: {
|
mounts: {
|
||||||
"yarn cache": {
|
"yarn cache": {
|
||||||
dest: "/cache/yarn"
|
dest: "/cache/yarn"
|
||||||
contents: engine.#CacheDir
|
contents: cache
|
||||||
}
|
}
|
||||||
"package source": {
|
"package source": {
|
||||||
dest: "/src"
|
dest: "/src"
|
||||||
@ -74,10 +97,10 @@ import (
|
|||||||
// FIXME: mount secrets
|
// FIXME: mount secrets
|
||||||
}
|
}
|
||||||
|
|
||||||
output: directories: "/build": _
|
export: directories: "/build": _
|
||||||
|
|
||||||
env: {
|
env: {
|
||||||
YARN_BUILD_SCRIPT: script
|
YARN_BUILD_SCRIPT: yarnScript
|
||||||
YARN_ARGS: strings.Join(args, "\n")
|
YARN_ARGS: strings.Join(args, "\n")
|
||||||
YARN_CACHE_FOLDER: "/cache/yarn"
|
YARN_CACHE_FOLDER: "/cache/yarn"
|
||||||
YARN_CWD: cwd
|
YARN_CWD: cwd
|
||||||
@ -92,5 +115,5 @@ import (
|
|||||||
}
|
}
|
||||||
|
|
||||||
// The final contents of the package after build
|
// The final contents of the package after build
|
||||||
output: command.output.directories."/build".contents
|
output: command.export.directories."/build".contents
|
||||||
}
|
}
|
||||||
|
@ -84,7 +84,7 @@ func (c *fsContext) FromValue(v *compiler.Value) (*FS, error) {
|
|||||||
|
|
||||||
id, err := v.LookupPath(fsIDPath).String()
|
id, err := v.LookupPath(fsIDPath).String()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("invalid FS %q: %w", v.Path(), err)
|
return nil, fmt.Errorf("invalid FS at path %q: %w", v.Path(), err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fs, ok := c.store[id]
|
fs, ok := c.store[id]
|
||||||
|
Reference in New Issue
Block a user