Skip to content

Commit 33fa516

Browse files
fix: rustup for i688 (#590)
Co-authored-by: hardy <luohf@infinilabs.com>
1 parent d2c1cf5 commit 33fa516

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,14 @@ jobs:
105105
chmod 600 ~/.ssh/known_hosts
106106
107107
- name: Pizza engine features setup
108-
if: matrix.target != 'i686-pc-windows-msvc'
109108
run: |
110-
make add-dep-pizza-engine
111-
rustup target add ${{ matrix.target}} --toolchain nightly-2025-02-28
109+
if [[ ${{ matrix.target }} == "i686-pc-windows-msvc" ]]; then
110+
rustup target add i686-pc-windows-msvc --toolchain stable
111+
else
112+
make add-dep-pizza-engine-linux
113+
rustup target add ${{ matrix.target}} --toolchain nightly-2025-02-28
114+
fi
115+
112116
113117
- name: Build the app with ${{ matrix.platform }}
114118
uses: tauri-apps/tauri-action@v0

0 commit comments

Comments
 (0)