Skip to content

Commit 68ba691

Browse files
authored
Merge branch 'main' into feat/asr_guarder
2 parents 369d9b3 + f8c2223 commit 68ba691

File tree

70 files changed

+1118
-842
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1118
-842
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
export PATH=$(pwd)/core/ten_gn:$PATH
7979
go env -w GOFLAGS="-buildvcs=false"
8080
go1.20.12 download
81-
rustup default nightly
81+
rustup default nightly-2025-08-10
8282
8383
tgn gen linux x64 debug -- enable_serialized_actions=true ten_enable_serialized_rust_action=true ten_rust_enable_gen_cargo_config=false ten_enable_ten_rust=false ten_enable_ten_rust_apis=false ten_enable_rust_incremental_build=false ten_manager_enable_frontend=false ten_enable_integration_tests_prebuilt=false ten_enable_nodejs_binding=false ten_enable_python_binding=false ten_enable_go_binding=false
8484

.github/workflows/linux_arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
curl -fsSL https://deb.nodesource.com/setup_23.x -o nodesource_setup.sh && \
104104
bash nodesource_setup.sh && \
105105
apt-get install -y nodejs && \
106-
rustup default nightly && \
106+
rustup default nightly-2025-08-10 && \
107107
df -h . && \
108108
tgn gen linux arm64 ${{ matrix.build_type }} -- is_clang=${{ matrix.compiler == 'gcc' && 'false' || 'true' }} log_level=1 enable_serialized_actions=true ten_enable_serialized_rust_action=true ten_enable_tests=false ten_rust_enable_tests=false ten_manager_enable_tests=false ten_enable_libwebsockets=false ten_enable_cargo_clean=true ten_enable_rust_incremental_build=false ten_manager_enable_frontend=false ten_enable_integration_tests_prebuilt=false ten_enable_nodejs_binding=false && \
109109
tgn build linux arm64 ${{ matrix.build_type }} && \

.github/workflows/linux_ubuntu2204.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
export PATH=$PATH:$(go env GOPATH)/bin
8989
go1.24.3 download
9090
go1.24.3 version
91-
rustup default nightly
91+
rustup default nightly-2025-08-10
9292
fi
9393
9494
df -h .

.github/workflows/mac_arm64.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Install tools and dependencies
6868
run: |
6969
brew install llvm
70-
rustup default nightly-2025-05-07
70+
rustup default nightly-2025-08-10
7171
7272
brew install tree
7373
pip3 install --use-pep517 python-dotenv jinja2
@@ -197,7 +197,7 @@ jobs:
197197
- name: Install tools and dependencies
198198
run: |
199199
brew install llvm
200-
rustup default nightly-2025-05-07
200+
rustup default nightly-2025-08-10
201201
202202
brew install tree
203203
pip3 install --use-pep517 python-dotenv jinja2
@@ -352,7 +352,7 @@ jobs:
352352
- name: Install tools and dependencies
353353
run: |
354354
brew install llvm
355-
rustup default nightly-2025-05-07
355+
rustup default nightly-2025-08-10
356356
357357
brew install tree
358358
pip3 install --use-pep517 python-dotenv jinja2

.github/workflows/mac_x64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Install tools and dependencies
6868
run: |
6969
brew install llvm
70-
rustup default nightly
70+
rustup default nightly-2025-08-10
7171
7272
brew install tree
7373
brew install gettext
@@ -195,7 +195,7 @@ jobs:
195195
- name: Install tools and dependencies
196196
run: |
197197
brew install llvm
198-
rustup default nightly
198+
rustup default nightly-2025-08-10
199199
200200
brew install tree
201201
pip3 install --use-pep517 python-dotenv jinja2

.github/workflows/tman_full_linux_x64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
export PATH=$(pwd)/core/ten_gn:$PATH
7979
echo $PATH
8080
81-
rustup default nightly
81+
rustup default nightly-2025-08-10
8282
8383
df -h .
8484

.github/workflows/tman_full_mac_arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
brew install llvm@18
7373
rustup default nightly-2024-07-19
7474
else
75-
rustup default nightly-2025-05-07
75+
rustup default nightly-2025-08-10
7676
fi
7777
7878
brew install tree

.github/workflows/tman_full_mac_x64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
brew install llvm@18
7474
rustup default nightly-2024-07-19
7575
else
76-
rustup default nightly
76+
rustup default nightly-2025-08-10
7777
fi
7878
7979
brew install tree

.github/workflows/tman_full_win_x64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
pip3 install --use-pep517 python-dotenv jinja2
7373
go install golang.org/dl/go1.24.3@latest && go1.24.3 download
7474
go env -w GOFLAGS="-buildvcs=false"
75-
rustup default nightly
75+
rustup default nightly-2025-08-10
7676
cargo install --force cbindgen
7777
7878
- name: Get Python executable path

.github/workflows/win.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
pip3 install --use-pep517 python-dotenv jinja2
7575
go install golang.org/dl/go1.24.3@latest && go1.24.3 download
7676
go env -w GOFLAGS="-buildvcs=false"
77-
rustup default nightly
77+
rustup default nightly-2025-08-10
7878
cargo install --force cbindgen
7979
8080
- name: Get Python executable path
@@ -200,7 +200,7 @@ jobs:
200200
pip3 install --use-pep517 python-dotenv jinja2
201201
go install golang.org/dl/go1.24.3@latest && go1.24.3 download
202202
go env -w GOFLAGS="-buildvcs=false"
203-
rustup default nightly
203+
rustup default nightly-2025-08-10
204204
cargo install --force cbindgen
205205
206206
- name: Get Python executable path
@@ -325,7 +325,7 @@ jobs:
325325
pip3 install --use-pep517 python-dotenv jinja2
326326
go install golang.org/dl/go1.24.3@latest && go1.24.3 download
327327
go env -w GOFLAGS="-buildvcs=false"
328-
rustup default nightly
328+
rustup default nightly-2025-08-10
329329
cargo install --force cbindgen
330330
331331
- name: Get Python executable path

0 commit comments

Comments
 (0)