Skip to content
Open
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
5 changes: 5 additions & 0 deletions .github/workflows/mac_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ jobs:
go env -w GOFLAGS="-buildvcs=false"
cargo install --force cbindgen

- name: Update version
run: |
python3 tools/version/update_version_in_ten_framework.py
python3 tools/version/check_version_in_ten_framework.py

- name: Build
run: |
if [ ${{ matrix.build_type }} == "debug" ]; then
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/mac_arm64_without_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ jobs:
brew install tree
pip3 install --use-pep517 python-dotenv jinja2

- name: Update version
run: |
python3 tools/version/update_version_in_ten_framework.py
python3 tools/version/check_version_in_ten_framework.py

- name: Build
run: |
export PATH=$(pwd)/core/ten_gn:$PATH
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/mac_x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ jobs:

cargo install --force cbindgen

- name: Update version
run: |
python3 tools/version/update_version_in_ten_framework.py
python3 tools/version/check_version_in_ten_framework.py

- name: Build
run: |
if [ ${{ matrix.build_type }} == "debug" ]; then
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tman_full_linux_x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,11 @@ jobs:
run: |
pip3 install --use-pep517 python-dotenv jinja2

- name: Update version
run: |
python3 tools/version/update_version_in_ten_framework.py
python3 tools/version/check_version_in_ten_framework.py

- name: Install dependencies
run: |
cd core/src/ten_manager/designer_frontend
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tman_full_mac_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ jobs:
go env -w GOFLAGS="-buildvcs=false"
cargo install --force cbindgen

- name: Update version
run: |
python3 tools/version/update_version_in_ten_framework.py
python3 tools/version/check_version_in_ten_framework.py

- name: Build
run: |
if [ ${{ matrix.build_type }} == "debug" ]; then
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tman_full_mac_x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ jobs:

cargo install --force cbindgen

- name: Update version
run: |
python3 tools/version/update_version_in_ten_framework.py
python3 tools/version/check_version_in_ten_framework.py

- name: Build
run: |
if [ ${{ matrix.build_type }} == "debug" ]; then
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tman_full_win_x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@ jobs:
rustup default nightly-2025-09-18
cargo install --force cbindgen

- name: Update version
run: |
python tools/version/update_version_in_ten_framework.py
python tools/version/check_version_in_ten_framework.py

- name: Get Python executable path
run: |
$pythonPath = python -c "import sys; print(sys.executable)"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ jobs:
rustup default nightly-2025-09-18
cargo install --force cbindgen

- name: Update version
run: |
python tools/version/update_version_in_ten_framework.py
python tools/version/check_version_in_ten_framework.py

- name: Get Python executable path
run: |
$pythonPath = python -c "import sys; print(sys.executable)"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"type": "app",
"name": "default_app_cpp",
"version": "0.11.20",
"version": "0.11.18",
"dependencies": [
{
"type": "system",
"name": "ten_runtime",
"version": "0.11.20"
"version": "0.11.18"
},
{
"type": "extension",
"name": "simple_http_server_cpp",
"version": "0.11.20"
"version": "0.11.18"
},
{
"type": "extension",
"name": "simple_echo_cpp",
"version": "0.11.20"
"version": "0.11.18"
},
{
"type": "extension",
"name": "default_extension_cpp",
"version": "0.11.20"
"version": "0.11.18"
}
]
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"type": "extension",
"name": "default_extension_cpp",
"version": "0.11.20",
"version": "0.11.18",
"dependencies": [
{
"type": "system",
"name": "ten_runtime",
"version": "0.11.20"
"version": "0.11.18"
}
],
"package": {
Expand Down
Loading