Merge pull request #2159 from aluzzardi/ci-fix-cue-lint

ci: fix CUE linter
This commit is contained in:
Marcos Nils 2022-04-12 21:02:28 -03:00 committed by GitHub
commit 464c7ad708
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 16 additions and 19 deletions

View File

@ -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)"
"""#

View File

@ -12,14 +12,14 @@ dagger.#Plan & {
// Run with a custom path to python
customPath: {
// python:3.10-alpine has both python3 and python in the PATH
_image: docker.#Pull & {
source: "python:3.10-alpine"
}
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

View File

@ -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"

View File

@ -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
}
}

View File

@ -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"]
}
}
}

View File

@ -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: {