Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/c-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
working-directory: "c"
strategy:
matrix:
os: [macos-12, macos-latest, ubuntu-latest]
os: [macos-13, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpp-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
working-directory: "cpp"
strategy:
matrix:
os: [macos-12, macos-latest, ubuntu-latest]
os: [macos-13, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
test:
strategy:
matrix:
os: [macos-12, macos-13, macos-13-xlarge, macos-14, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-latest, windows-latest]
os: [macos-13, macos-13, macos-13-xlarge, macos-14, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/kotlin-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@ jobs:
kotlin/target/classes/native

build-centos7:
runs-on: ubuntu-latest
container:
image: "kcllang/kcl-java-builder-centos7:0.1.0"
runs-on: ubuntu-20.04

permissions:
contents: read
Expand Down Expand Up @@ -128,10 +126,13 @@ jobs:
name: kcl-lib-osx-aarch_64
path: kotlin/native

- name: Package Kotlin artifact
working-directory: kotlin
- name: Run tests and package in CentOS 7 container
run: |
rustup default stable && mvn package -DskipTests=true -Dcargo-build.profile=release
docker run --rm -v ${{ github.workspace }}/kotlin:/work kcllang/kcl-java-builder-centos7:0.1.0 bash -c "
cd /work &&
rustup default stable &&
mvn package -DskipTests=true -Dcargo-build.profile=release
"

- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nodejs-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.74
toolchain: 1.75
override: true
components: clippy, rustfmt

Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
path: nodejs/*.node

macos:
runs-on: macos-12
runs-on: macos-13
strategy:
matrix:
settings:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/python-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ on:
permissions:
contents: read

env:
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: 1

jobs:
sdist:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swift-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
working-directory: "swift"
strategy:
matrix:
os: [macos-12, macos-latest, ubuntu-latest]
os: [macos-13, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zig-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
working-directory: "zig"
strategy:
matrix:
os: [macos-12, macos-latest, ubuntu-20.04, ubuntu-latest]
os: [macos-13, macos-latest, ubuntu-20.04, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ license = "Apache-2.0"

[dependencies]
anyhow = "1"
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-evaluator = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-loader = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-runtime = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-evaluator = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-loader = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-runtime = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
2 changes: 1 addition & 1 deletion c/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ doc = false
cbindgen = "0.26.0"

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
2 changes: 1 addition & 1 deletion cpp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["staticlib"]
[dependencies]
anyhow = "1.0"
cxx = "1.0"
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }

[build-dependencies]
cxx-build = "1.0"
2 changes: 1 addition & 1 deletion dotnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ crate-type = ["cdylib"]
doc = false

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
6 changes: 3 additions & 3 deletions java/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ serde = { version = "1", features = ["derive"] }
once_cell = "1.19.0"
lazy_static = "1.4.0"

kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.11.0-alpha.1" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.11.0-alpha.1" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.11.0-alpha.1" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
6 changes: 3 additions & 3 deletions kotlin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ serde = { version = "1", features = ["derive"] }
once_cell = "1.19.0"
lazy_static = "1.4.0"

kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
2 changes: 1 addition & 1 deletion lua/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ mlua = { version = "0.9", features = [
"module",
"macros",
], default-features = false, optional = true }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
2 changes: 1 addition & 1 deletion nodejs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version = "0.0.0"
crate-type = ["cdylib"]

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.12.2", default-features = false, features = ["napi4"] }
napi-derive = "2.12.2"
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
pyo3 = "0.20.1"
2 changes: 1 addition & 1 deletion swift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ doc = false
cbindgen = "0.26.0"

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }