Skip to content

Commit

Permalink
fix: fix lsp watcher (#1784)
Browse files Browse the repository at this point in the history
* fix: fix lsp watcher. remove feature, wait for `kcl mod metadata` to read only

Signed-off-by: he1pa <[email protected]>

* add arg `--update` for `kcl mod metadata`

Signed-off-by: he1pa <[email protected]>

* fix: fix native mod metadata

Signed-off-by: zongz <[email protected]>

* fix: make fmt

Signed-off-by: zongz <[email protected]>

* fix: rm git submodule

Signed-off-by: zongz <[email protected]>

* fix: rm git submodule

Signed-off-by: zongz <[email protected]>

* fix: rm git submodules

Signed-off-by: zongz <[email protected]>

---------

Signed-off-by: he1pa <[email protected]>
Signed-off-by: zongz <[email protected]>
Co-authored-by: zongz <[email protected]>
  • Loading branch information
He1pa and zong-zhe authored Dec 16, 2024
1 parent 580c0c2 commit 39c7503
Show file tree
Hide file tree
Showing 15 changed files with 321 additions and 48 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Install KCL CLI
run: |
go install kcl-lang.io/cli/cmd/kcl@c5ecdd12a97ca836a34744cd2f4d561eaae381ff
go install kcl-lang.io/cli/cmd/kcl@main
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
echo "${{ github.workspace }}/go/bin" >> $GITHUB_PATH
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
shell: bash
- name: Install KCL CLI
run: |
go install kcl-lang.io/cli/cmd/kcl@c5ecdd12a97ca836a34744cd2f4d561eaae381ff
go install kcl-lang.io/cli/cmd/kcl@main
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
echo "${{ github.workspace }}/go/bin" >> $GITHUB_PATH
- name: Unit test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install KCL
shell: powershell
run: |
go install kcl-lang.io/cli/cmd/kcl@c5ecdd12a97ca836a34744cd2f4d561eaae381ff
go install kcl-lang.io/cli/cmd/kcl@main
$GoPath = go env GOPATH
$GoInstallBin = Join-Path $GoPath "bin"
$Env:PATH += ";$GoInstallBin"
Expand Down
259 changes: 246 additions & 13 deletions kclvm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions kclvm/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ kclvm-ast = {path = "../ast"}
dirs = "5.0.0"
md-5 = "0.8.0"
regex = "1.10.4"
url = "2.5.4"
Loading

0 comments on commit 39c7503

Please sign in to comment.