Merge pull request #2159 from aluzzardi/ci-fix-cue-lint
ci: fix CUE linter
This commit is contained in:
commit
464c7ad708
@ -39,7 +39,7 @@ import (
|
||||
// CACHE: copy only *.cue files
|
||||
docker.#Copy & {
|
||||
contents: source
|
||||
include: ["*.cue", "**/*.cue"]
|
||||
include: [".git", "*.cue", "**/*.cue"]
|
||||
dest: "/cue"
|
||||
},
|
||||
|
||||
@ -47,6 +47,8 @@ import (
|
||||
bash.#Run & {
|
||||
workdir: "/cue"
|
||||
script: contents: #"""
|
||||
git status
|
||||
|
||||
find . -name '*.cue' -not -path '*/cue.mod/*' -print | time xargs -t -n 1 -P 8 cue fmt -s
|
||||
test -z "$(git status -s . | grep -e "^ M" | grep "\.cue" | cut -d ' ' -f3 | tee /dev/stderr)"
|
||||
"""#
|
||||
|
@ -19,7 +19,7 @@ dagger.#Plan & {
|
||||
}
|
||||
run: python.#Run & {
|
||||
input: _image.output
|
||||
command: name: "python"
|
||||
command: name: "python"
|
||||
script: contents: #"print("Hello, world!")"#
|
||||
}
|
||||
// This needs no output test because it is only testing that the command runs
|
||||
|
@ -7,13 +7,13 @@ import (
|
||||
|
||||
// Checks lua format via Stylua
|
||||
#StyluaCheck: {
|
||||
// Files to Copy
|
||||
source: dagger.#FS
|
||||
// Files to Copy
|
||||
source: dagger.#FS
|
||||
|
||||
// Any extra formatting args
|
||||
extraArgs: [...string]
|
||||
// Any extra formatting args
|
||||
extraArgs: [...string]
|
||||
|
||||
_run: docker.#Build & {
|
||||
_run: docker.#Build & {
|
||||
steps: [
|
||||
docker.#Pull & {
|
||||
source: "rust:latest"
|
||||
|
@ -8,12 +8,7 @@ import (
|
||||
dagger.#Plan & {
|
||||
client: filesystem: "./data/hello": read: contents: dagger.#FS
|
||||
|
||||
actions: test: {
|
||||
simple: {
|
||||
fmtCheck: lua.#StyluaCheck & {
|
||||
source: client.filesystem."./data/hello".read.contents
|
||||
}
|
||||
}
|
||||
actions: test: simple: fmtCheck: lua.#StyluaCheck & {
|
||||
source: client.filesystem."./data/hello".read.contents
|
||||
}
|
||||
}
|
||||
|
||||
|
4
tests/plan/client/env/default.cue
vendored
4
tests/plan/client/env/default.cue
vendored
@ -12,8 +12,8 @@ dagger.#Plan & {
|
||||
source: "alpine:3.15.0@sha256:e7d88de73db3d3fd9b2d63aa7f447a10fd0220b7cbf39803c803f2af9ba256b3"
|
||||
}
|
||||
test: core.#Exec & {
|
||||
input: image.output
|
||||
args: ["test", client.env.TEST_DEFAULT, "=", "hello universe"]
|
||||
input: image.output
|
||||
args: ["test", client.env.TEST_DEFAULT, "=", "hello universe"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
4
tests/plan/client/env/usage.cue
vendored
4
tests/plan/client/env/usage.cue
vendored
@ -7,8 +7,8 @@ import (
|
||||
|
||||
dagger.#Plan & {
|
||||
client: env: {
|
||||
TEST_STRING: string
|
||||
TEST_SECRET: dagger.#Secret
|
||||
TEST_STRING: string
|
||||
TEST_SECRET: dagger.#Secret
|
||||
TEST_DEFAULT: string | *"hello world"
|
||||
}
|
||||
actions: {
|
||||
|
Reference in New Issue
Block a user