Skip to content

Commit b6aa579

Browse files
committed
fix: revert changes
1 parent 7b49d15 commit b6aa579

File tree

11 files changed

+46
-34
lines changed

11 files changed

+46
-34
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-07
135+
rustup default nightly-2025-08-10
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-07 && \
160+
rustup default nightly-2025-08-10 && \
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-07
147+
rustup default nightly-2025-08-10
148148
fi
149149
150150
df -h .

.github/workflows/mac_arm64.yml

Lines changed: 34 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,10 @@ jobs:
120120

121121
- name: Install tools and dependencies
122122
run: |
123-
brew install llvm
124-
rustup default nightly-2025-09-07
123+
# Due to https://github.com/llvm/llvm-project/issues/155531, we need
124+
# to use llvm@20 currently, and will switch to llvm when it is solved.
125+
brew install llvm@20
126+
rustup default nightly-2025-08-10
125127
126128
brew install tree
127129
pip3 install --use-pep517 python-dotenv jinja2
@@ -132,7 +134,7 @@ jobs:
132134
- name: Build
133135
run: |
134136
if [ ${{ matrix.build_type }} == "debug" ]; then
135-
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
137+
export PATH="$(brew --prefix llvm@20)/bin:$PATH"
136138
fi
137139
export PATH=$(pwd)/core/ten_gn:$PATH
138140
echo $PATH
@@ -170,7 +172,7 @@ jobs:
170172
- name: Upload tests relevant artifacts
171173
uses: actions/upload-artifact@v4
172174
with:
173-
name: tests-artifacts-${{ matrix.build_type }}
175+
name: tests-artifacts-mac-arm64-${{ matrix.build_type }}
174176
path: tests-artifacts.tar.gz
175177
if-no-files-found: ignore
176178

@@ -250,8 +252,10 @@ jobs:
250252

251253
- name: Install tools and dependencies
252254
run: |
253-
brew install llvm
254-
rustup default nightly-2025-09-07
255+
# Due to https://github.com/llvm/llvm-project/issues/155531, we need
256+
# to use llvm@20 currently, and will switch to llvm when it is solved.
257+
brew install llvm@20
258+
rustup default nightly-2025-08-10
255259
256260
brew install tree
257261
pip3 install --use-pep517 python-dotenv jinja2
@@ -262,7 +266,7 @@ jobs:
262266
- name: Download build artifacts (tar archive)
263267
uses: actions/download-artifact@v4
264268
with:
265-
name: tests-artifacts-${{ matrix.build_type }}
269+
name: tests-artifacts-mac-arm64-${{ matrix.build_type }}
266270
path: out/mac/arm64
267271

268272
- name: Extract tests artifacts preserving permissions
@@ -405,8 +409,10 @@ jobs:
405409

406410
- name: Install tools and dependencies
407411
run: |
408-
brew install llvm
409-
rustup default nightly-2025-09-07
412+
# Due to https://github.com/llvm/llvm-project/issues/155531, we need
413+
# to use llvm@20 currently, and will switch to llvm when it is solved.
414+
brew install llvm@20
415+
rustup default nightly-2025-08-10
410416
411417
brew install tree
412418
pip3 install --use-pep517 python-dotenv jinja2
@@ -417,7 +423,7 @@ jobs:
417423
- name: Download build artifacts (tar archive)
418424
uses: actions/download-artifact@v4
419425
with:
420-
name: tests-artifacts-${{ matrix.build_type }}
426+
name: tests-artifacts-mac-arm64-${{ matrix.build_type }}
421427
path: out/mac/arm64
422428

423429
- name: Extract tests artifacts preserving permissions
@@ -497,8 +503,10 @@ jobs:
497503

498504
- name: Install tools and dependencies
499505
run: |
500-
brew install llvm
501-
rustup default nightly-2025-09-07
506+
# Due to https://github.com/llvm/llvm-project/issues/155531, we need
507+
# to use llvm@20 currently, and will switch to llvm when it is solved.
508+
brew install llvm@20
509+
rustup default nightly-2025-08-10
502510
503511
brew install tree
504512
pip3 install --use-pep517 python-dotenv jinja2
@@ -509,7 +517,7 @@ jobs:
509517
- name: Download build artifacts (tar archive)
510518
uses: actions/download-artifact@v4
511519
with:
512-
name: tests-artifacts-${{ matrix.build_type }}
520+
name: tests-artifacts-mac-arm64-${{ matrix.build_type }}
513521
path: out/mac/arm64
514522

515523
- name: Extract tests artifacts preserving permissions
@@ -535,7 +543,7 @@ jobs:
535543
GOTRACEBACK: crash
536544
run: |
537545
if [ ${{ matrix.build_type }} == "debug" ]; then
538-
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
546+
export PATH="$(brew --prefix llvm@20)/bin:$PATH"
539547
fi
540548
export PATH=$(pwd)/core/ten_gn:$PATH
541549
cd out/mac/arm64/
@@ -597,8 +605,10 @@ jobs:
597605

598606
- name: Install tools and dependencies
599607
run: |
600-
brew install llvm
601-
rustup default nightly-2025-09-07
608+
# Due to https://github.com/llvm/llvm-project/issues/155531, we need
609+
# to use llvm@20 currently, and will switch to llvm when it is solved.
610+
brew install llvm@20
611+
rustup default nightly-2025-08-10
602612
603613
brew install tree
604614
pip3 install --use-pep517 python-dotenv jinja2
@@ -609,7 +619,7 @@ jobs:
609619
- name: Download build artifacts (tar archive)
610620
uses: actions/download-artifact@v4
611621
with:
612-
name: tests-artifacts-${{ matrix.build_type }}
622+
name: tests-artifacts-mac-arm64-${{ matrix.build_type }}
613623
path: out/mac/arm64
614624

615625
- name: Extract tests artifacts preserving permissions
@@ -635,7 +645,7 @@ jobs:
635645
GOTRACEBACK: crash
636646
run: |
637647
if [ ${{ matrix.build_type }} == "debug" ]; then
638-
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
648+
export PATH="$(brew --prefix llvm@20)/bin:$PATH"
639649
fi
640650
export PATH=$(pwd)/core/ten_gn:$PATH
641651
cd out/mac/arm64/
@@ -697,8 +707,10 @@ jobs:
697707

698708
- name: Install tools and dependencies
699709
run: |
700-
brew install llvm
701-
rustup default nightly-2025-09-07
710+
# Due to https://github.com/llvm/llvm-project/issues/155531, we need
711+
# to use llvm@20 currently, and will switch to llvm when it is solved.
712+
brew install llvm@20
713+
rustup default nightly-2025-08-10
702714
703715
brew install tree
704716
pip3 install --use-pep517 python-dotenv jinja2
@@ -709,7 +721,7 @@ jobs:
709721
- name: Download build artifacts (tar archive)
710722
uses: actions/download-artifact@v4
711723
with:
712-
name: tests-artifacts-${{ matrix.build_type }}
724+
name: tests-artifacts-mac-arm64-${{ matrix.build_type }}
713725
path: out/mac/arm64
714726

715727
- name: Extract tests artifacts preserving permissions
@@ -735,7 +747,7 @@ jobs:
735747
GOTRACEBACK: crash
736748
run: |
737749
if [ ${{ matrix.build_type }} == "debug" ]; then
738-
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
750+
export PATH="$(brew --prefix llvm@20)/bin:$PATH"
739751
fi
740752
export PATH=$(pwd)/core/ten_gn:$PATH
741753
cd out/mac/arm64/

.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-07
124+
rustup default nightly-2025-08-10
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-07
252+
rustup default nightly-2025-08-10
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-07
135+
rustup default nightly-2025-08-10
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-07
129+
rustup default nightly-2025-08-10
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-07
130+
rustup default nightly-2025-08-10
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-07
129+
rustup default nightly-2025-08-10
130130
cargo install --force cbindgen
131131
132132
- name: Get Python executable path

.github/workflows/win.yml

Lines changed: 1 addition & 1 deletion
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-07
131+
rustup default nightly-2025-08-10
132132
cargo install --force cbindgen
133133
134134
- name: Get Python executable path

0 commit comments

Comments
 (0)