fix: rustup for i688 (#590)

Co-authored-by: hardy <luohf@infinilabs.com>
This commit is contained in:
Hardy
2025-06-01 07:19:28 +08:00
committed by GitHub
parent d2c1cf513d
commit 33fa516aad

View File

@@ -105,10 +105,14 @@ jobs:
chmod 600 ~/.ssh/known_hosts chmod 600 ~/.ssh/known_hosts
- name: Pizza engine features setup - name: Pizza engine features setup
if: matrix.target != 'i686-pc-windows-msvc'
run: | run: |
make add-dep-pizza-engine if [[ ${{ matrix.target }} == "i686-pc-windows-msvc" ]]; then
rustup target add i686-pc-windows-msvc --toolchain stable
else
make add-dep-pizza-engine-linux
rustup target add ${{ matrix.target}} --toolchain nightly-2025-02-28 rustup target add ${{ matrix.target}} --toolchain nightly-2025-02-28
fi
- name: Build the app with ${{ matrix.platform }} - name: Build the app with ${{ matrix.platform }}
uses: tauri-apps/tauri-action@v0 uses: tauri-apps/tauri-action@v0