Skip to content

Commit 0362966

Browse files
committed
fix: upgrade rust version
1 parent 1b28e7f commit 0362966

File tree

12 files changed

+36
-44
lines changed

12 files changed

+36
-44
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
export PATH=$(pwd)/core/ten_gn:$PATH
133133
go env -w GOFLAGS="-buildvcs=false"
134134
go1.20.12 download
135-
rustup default nightly-2025-09-04
135+
rustup default nightly-2025-09-07
136136
137137
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
138138

.github/workflows/linux_arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
curl -fsSL https://deb.nodesource.com/setup_23.x -o nodesource_setup.sh && \
158158
bash nodesource_setup.sh && \
159159
apt-get install -y nodejs && \
160-
rustup default nightly-2025-09-04 && \
160+
rustup default nightly-2025-09-07 && \
161161
df -h . && \
162162
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 && \
163163
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
@@ -144,7 +144,7 @@ jobs:
144144
export PATH=$PATH:$(go env GOPATH)/bin
145145
go1.24.3 download
146146
go1.24.3 version
147-
rustup default nightly-2025-09-04
147+
rustup default nightly-2025-09-07
148148
fi
149149
150150
df -h .

.github/workflows/mac_arm64.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
- name: Install tools and dependencies
122122
run: |
123123
brew install llvm
124-
rustup default nightly-2025-09-04
124+
rustup default nightly-2025-09-07
125125
126126
brew install tree
127127
pip3 install --use-pep517 python-dotenv jinja2
@@ -251,7 +251,7 @@ jobs:
251251
- name: Install tools and dependencies
252252
run: |
253253
brew install llvm
254-
rustup default nightly-2025-09-04
254+
rustup default nightly-2025-09-07
255255
256256
brew install tree
257257
pip3 install --use-pep517 python-dotenv jinja2
@@ -406,7 +406,7 @@ jobs:
406406
- name: Install tools and dependencies
407407
run: |
408408
brew install llvm
409-
rustup default nightly-2025-09-04
409+
rustup default nightly-2025-09-07
410410
411411
brew install tree
412412
pip3 install --use-pep517 python-dotenv jinja2
@@ -498,7 +498,7 @@ jobs:
498498
- name: Install tools and dependencies
499499
run: |
500500
brew install llvm
501-
rustup default nightly-2025-09-04
501+
rustup default nightly-2025-09-07
502502
503503
brew install tree
504504
pip3 install --use-pep517 python-dotenv jinja2
@@ -598,7 +598,7 @@ jobs:
598598
- name: Install tools and dependencies
599599
run: |
600600
brew install llvm
601-
rustup default nightly-2025-09-04
601+
rustup default nightly-2025-09-07
602602
603603
brew install tree
604604
pip3 install --use-pep517 python-dotenv jinja2
@@ -698,7 +698,7 @@ jobs:
698698
- name: Install tools and dependencies
699699
run: |
700700
brew install llvm
701-
rustup default nightly-2025-09-04
701+
rustup default nightly-2025-09-07
702702
703703
brew install tree
704704
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
@@ -121,7 +121,7 @@ jobs:
121121
- name: Install tools and dependencies
122122
run: |
123123
brew install llvm
124-
rustup default nightly-2025-09-04
124+
rustup default nightly-2025-09-07
125125
126126
brew install tree
127127
brew install gettext
@@ -249,7 +249,7 @@ jobs:
249249
- name: Install tools and dependencies
250250
run: |
251251
brew install llvm
252-
rustup default nightly-2025-09-04
252+
rustup default nightly-2025-09-07
253253
254254
brew install tree
255255
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
@@ -132,7 +132,7 @@ jobs:
132132
export PATH=$(pwd)/core/ten_gn:$PATH
133133
echo $PATH
134134
135-
rustup default nightly-2025-09-04
135+
rustup default nightly-2025-09-07
136136
137137
df -h .
138138

.github/workflows/tman_full_mac_arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
brew install llvm@18
127127
rustup default nightly-2024-07-19
128128
else
129-
rustup default nightly-2025-09-04
129+
rustup default nightly-2025-09-07
130130
fi
131131
132132
brew install tree

.github/workflows/tman_full_mac_x64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
brew install llvm@18
128128
rustup default nightly-2024-07-19
129129
else
130-
rustup default nightly-2025-09-04
130+
rustup default nightly-2025-09-07
131131
fi
132132
133133
brew install tree

.github/workflows/tman_full_win_x64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
pip3 install --use-pep517 python-dotenv jinja2
127127
go install golang.org/dl/go1.24.3@latest && go1.24.3 download
128128
go env -w GOFLAGS="-buildvcs=false"
129-
rustup default nightly-2025-09-04
129+
rustup default nightly-2025-09-07
130130
cargo install --force cbindgen
131131
132132
- name: Get Python executable path

.github/workflows/win.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
pip3 install --use-pep517 python-dotenv jinja2
129129
go install golang.org/dl/go1.24.3@latest && go1.24.3 download
130130
go env -w GOFLAGS="-buildvcs=false"
131-
rustup default nightly-2025-09-04
131+
rustup default nightly-2025-09-07
132132
cargo install --force cbindgen
133133
134134
- name: Get Python executable path
@@ -254,7 +254,7 @@ jobs:
254254
pip3 install --use-pep517 python-dotenv jinja2
255255
go install golang.org/dl/go1.24.3@latest && go1.24.3 download
256256
go env -w GOFLAGS="-buildvcs=false"
257-
rustup default nightly-2025-09-04
257+
rustup default nightly-2025-09-07
258258
cargo install --force cbindgen
259259
260260
- name: Get Python executable path
@@ -379,7 +379,7 @@ jobs:
379379
pip3 install --use-pep517 python-dotenv jinja2
380380
go install golang.org/dl/go1.24.3@latest && go1.24.3 download
381381
go env -w GOFLAGS="-buildvcs=false"
382-
rustup default nightly-2025-09-04
382+
rustup default nightly-2025-09-07
383383
cargo install --force cbindgen
384384
385385
- name: Get Python executable path
@@ -464,7 +464,7 @@ jobs:
464464
pip3 install --use-pep517 python-dotenv jinja2
465465
go install golang.org/dl/go1.24.3@latest && go1.24.3 download
466466
go env -w GOFLAGS="-buildvcs=false"
467-
rustup default nightly-2025-09-04
467+
rustup default nightly-2025-09-07
468468
cargo install --force cbindgen
469469
470470
- name: Get Python executable path

0 commit comments

Comments
 (0)