Skip to content
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
79b88a8
Refine uv lock maintenance loops
junhaoliao Oct 25, 2025
929bd25
feat(log-converter): Add log-converter binary which converts unstruct…
gibber9809 Oct 25, 2025
1677431
fix(clp-mcp-server): Include log viewer links in formatted log events…
20001020ycx Oct 26, 2025
9e82bdb
chore(deployment): Exclude generated `.env` file under `presto-clp` f…
junhaoliao Oct 26, 2025
6c6de99
fix(deployment): Update archives directory mount paths in Presto Dock…
junhaoliao Oct 26, 2025
2ac456e
feat(clp-package)!: Add `compress-from-s3` Python and shell scripts f…
Eden-D-Zhang Oct 26, 2025
cbb8629
fix lock.yaml
junhaoliao Oct 27, 2025
03f33a2
ci: Add clp-uv-checks workflow for validating Python UV lock files.
junhaoliao Oct 27, 2025
212a904
fix(deps): Ensure lock.yaml ends with a newline.
junhaoliao Oct 27, 2025
cb57c0e
Merge branch 'main' into codex/fix-issue-#1381-in-repository
junhaoliao Oct 27, 2025
143058d
use LF for newlines
junhaoliao Oct 27, 2025
47a58d5
ci(workflows): Rename rust-checks job to uv-checks in clp-uv-checks w…
junhaoliao Oct 27, 2025
dae6cb7
ci(workflows): Add uv installation step in clp-uv-checks workflow.
junhaoliao Oct 27, 2025
6da77ea
Fix hyphenation in "up-to-date" adjective.
junhaoliao Oct 27, 2025
16f34b7
ci(workflows): Adjust placement of version comment in clp-uv-checks w…
junhaoliao Oct 27, 2025
dd13a01
ci(workflows): Adjust spacing in checkout action comment in clp-uv-ch…
junhaoliao Oct 27, 2025
874df6d
feat(deployment): Add `--setup-only` flag to `start-clp.sh` to set up…
junhaoliao Oct 27, 2025
1b92ca8
fix(docker): Include `libmariadbcpp.so` (required by `spider_schedule…
junhaoliao Oct 27, 2025
fdd2f82
fix(deployment): Use CLP Package's Docker Compose network for Presto …
junhaoliao Oct 27, 2025
fde9a1a
Merge branch 'main' into codex/fix-issue-#1381-in-repository
junhaoliao Oct 27, 2025
39417f0
Improve docs - Apply suggestions from code review
junhaoliao Oct 27, 2025
b5dc6ca
fix(ci): Update uv installation method to use the setup-uv action
junhaoliao Oct 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions taskfiles/deps/lock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,36 @@
vars:
CARGO_FETCH_FLAGS: "--locked"

check-uv:
cmds:
- for: &uv-component-projects
- "clp-mcp-server"
- "clp-package-utils"
- "clp-py-utils"
- "job-orchestration"
cmd: |-
uv lock --directory "{{default (cat .ROOT_DIR "/components") .G_COMPONENTS_DIR}}/{{.ITEM}}" --check

Check failure on line 21 in taskfiles/deps/lock.yaml

View workflow job for this annotation

GitHub Actions / lint-check (ubuntu-24.04)

21:101 [line-length] line too long (109 > 100 characters)

Check failure on line 21 in taskfiles/deps/lock.yaml

View workflow job for this annotation

GitHub Actions / lint-check (ubuntu-24.04)

21:101 [line-length] line too long (109 > 100 characters)
- for: &uv-root-projects
- "integration-tests"
- "tools/yscope-dev-utils/exports/ystdlib-py"
cmd: |-
uv lock --directory "{{.ROOT_DIR}}/{{.ITEM}}" --check
update-rust:
cmds:
- task: "cargo-workspace-update"
vars:
CARGO_UPDATE_FLAGS: ""

update-uv:
cmds:
- for: *uv-component-projects
cmd: |-
uv lock --directory "{{default (cat .ROOT_DIR "/components") .G_COMPONENTS_DIR}}/{{.ITEM}}"

Check failure on line 38 in taskfiles/deps/lock.yaml

View workflow job for this annotation

GitHub Actions / lint-check (ubuntu-24.04)

38:101 [line-length] line too long (101 > 100 characters)

Check failure on line 38 in taskfiles/deps/lock.yaml

View workflow job for this annotation

GitHub Actions / lint-check (ubuntu-24.04)

38:101 [line-length] line too long (101 > 100 characters)
- for: *uv-root-projects
cmd: |-
uv lock --directory "{{.ROOT_DIR}}/{{.ITEM}}"
# Runs `cargo fetch` in the root Rust workspace directory with the specified flags.
#
# @param {string} CARGO_FETCH_FLAGS The flags to pass to the `cargo fetch` command.
Expand Down
Loading