mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-24 08:28:27 -04:00
Fix CI (#2461)
Use native-tls-vendored for reqwest - Update prisma-client-rust - Fix mock_instance test - Clippy + fmt - Improve error handling when uninstall i386 libs in setup-system action
This commit is contained in:
committed by
GitHub
parent
7cd33727b3
commit
0f405caf24
10
.github/actions/setup-system/action.yml
vendored
10
.github/actions/setup-system/action.yml
vendored
@@ -62,12 +62,14 @@ runs:
|
||||
shell: bash
|
||||
if: ${{ runner.os == 'Linux' }}
|
||||
run: |
|
||||
dpkg -l | grep i386
|
||||
sudo apt-get purge --allow-remove-essential libc6-i386 ".*:i386"
|
||||
sudo dpkg --remove-architecture i386
|
||||
set -eux
|
||||
if dpkg -l | grep i386; then
|
||||
sudo apt-get purge --allow-remove-essential libc6-i386 ".*:i386" || true
|
||||
sudo dpkg --remove-architecture i386 || true
|
||||
fi
|
||||
|
||||
# https://github.com/actions/runner-images/issues/9546#issuecomment-2014940361
|
||||
sudo apt-get remove libunwind-*
|
||||
sudo apt-get remove libunwind-* || true
|
||||
|
||||
- name: Setup Rust and Dependencies
|
||||
uses: ./.github/actions/setup-rust
|
||||
|
||||
Reference in New Issue
Block a user