Skip to content

Commit cb01607

Browse files
authored
chore: bump kcl version to 0.10.3 (#1693)
* chore: bump kcl version to 0.10.3 Signed-off-by: peefy <[email protected]> * chore: remove llvm@12 installation in CI Signed-off-by: peefy <[email protected]> --------- Signed-off-by: peefy <[email protected]>
1 parent 0c59e6c commit cb01607

File tree

28 files changed

+56
-62
lines changed

28 files changed

+56
-62
lines changed

.github/workflows/build-test-macos-arm64.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ jobs:
2929
- name: Delete rust cargo
3030
run: rm -rf /root/.cargo/bin
3131
shell: bash
32-
- name: Install LLVM 12
33-
run: brew install llvm@12
34-
shell: bash
3532
- name: Install rust nightly toolchain
3633
uses: actions-rs/toolchain@v1
3734
with:
@@ -44,15 +41,15 @@ jobs:
4441
python-version: '3.11'
4542
- name: Grammar test
4643
working-directory: ./kclvm
47-
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/opt/homebrew/opt/llvm@12/bin/ && make && make test-grammar
44+
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin && make && make test-grammar
4845
shell: bash
4946
- name: Evaluator Grammar test
5047
working-directory: ./kclvm
51-
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/opt/homebrew/opt/llvm@12/bin/ && make test-grammar-evaluator
48+
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin && make test-grammar-evaluator
5249
shell: bash
5350

5451
- name: Release
55-
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/opt/homebrew/opt/llvm@12/bin/ && make release
52+
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin && make release
5653
shell: bash
5754

5855
- uses: actions/upload-artifact@v4

.github/workflows/macos_test.yaml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ jobs:
4444
- name: Delete rust cargo
4545
run: rm -rf /root/.cargo/bin
4646
shell: bash
47-
- name: Install LLVM 12
48-
run: brew install llvm@12
49-
shell: bash
5047
- name: Install rust nightly toolchain
5148
uses: actions-rs/toolchain@v1
5249
with:
@@ -59,20 +56,20 @@ jobs:
5956
shell: bash
6057
- name: Grammar test
6158
working-directory: ./kclvm
62-
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/usr/local/opt/llvm@12/bin && make && make test-grammar
59+
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin && make && make test-grammar
6360
shell: bash
6461
- name: Evaluator Grammar test
6562
working-directory: ./kclvm
66-
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/usr/local/opt/llvm@12/bin && make test-grammar-evaluator
63+
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin && make test-grammar-evaluator
6764
shell: bash
6865
- name: Runtime test
6966
working-directory: ./kclvm
70-
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/usr/local/opt/llvm@12/bin && make test-runtime
67+
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin && make test-runtime
7168
shell: bash
7269

7370
- name: Unit test
7471
working-directory: ./kclvm
75-
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/usr/local/opt/llvm@12/bin && make codecov-lcov
72+
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin && make codecov-lcov
7673
shell: bash
7774

7875
- name: Coveralls upload
@@ -82,7 +79,7 @@ jobs:
8279
path-to-lcov: ./kclvm/.kclvm_cov/lcov.info
8380

8481
- name: Release
85-
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin:/usr/local/opt/llvm@12/bin && make release
82+
run: export PATH=$PATH:$PWD/../_build/dist/Darwin/kclvm/bin && make release
8683
shell: bash
8784

8885
- uses: actions/upload-artifact@v4

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.2
1+
0.10.3

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kclvm_cli"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55

66
[[bin]]

kclvm/Cargo.lock

Lines changed: 23 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kclvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kclvm"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

kclvm/api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kclvm-api"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55

66
[dependencies]

kclvm/ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kclvm-ast"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

kclvm/ast_pretty/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kclvm-ast-pretty"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

kclvm/cmd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kclvm-cmd"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)