mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-24 16:41:07 -04:00
Adds trap for error handling from set -e, updates error handling conditionals for set -e compatibility, updates debian tauri dependencies
This commit is contained in:
52
.github/scripts/setup-system.sh
vendored
52
.github/scripts/setup-system.sh
vendored
@@ -1,16 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
script_failure() {
|
||||
echo "An error occurred while performing the task on line $1" >&2
|
||||
echo "Setup for Spacedrive development failed" >&2
|
||||
}
|
||||
|
||||
trap 'script_failure $LINENO' ERR
|
||||
|
||||
echo "Setting up your system for Spacedrive development!"
|
||||
|
||||
which cargo &> /dev/null
|
||||
if [ $? -eq 1 ]; then
|
||||
if ! which cargo &> /dev/null; then
|
||||
echo "Rust was not detected on your system. Ensure the 'rustc' and 'cargo' binaries are in your \$PATH."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "${SPACEDRIVE_SKIP_PNPM_CHECK:-}" != "true" ]; then
|
||||
which pnpm &> /dev/null
|
||||
if [ $? -eq 1 ]; then
|
||||
|
||||
if ! which pnpm &> /dev/null; then
|
||||
echo "PNPM was not detected on your system. Ensure the 'pnpm' command is in your \$PATH. You are not able to use Yarn or NPM."
|
||||
exit 1
|
||||
fi
|
||||
@@ -18,6 +26,42 @@ else
|
||||
echo "Skipped PNPM check!"
|
||||
fi
|
||||
|
||||
if [ "$1" == "mobile" ]; then
|
||||
echo "Setting up for mobile development!"
|
||||
|
||||
# IOS targets
|
||||
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||
echo "Installing IOS Rust targets..."
|
||||
|
||||
if ! /usr/bin/xcodebuild -version; then
|
||||
echo "Xcode is not installed! Ensure you have it installed!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rustup target add aarch64-apple-ios
|
||||
fi
|
||||
|
||||
# Android requires python
|
||||
if ! command -v python3 &> /dev/null
|
||||
then
|
||||
echo "Python3 could not be found. This is required for Android mobile development!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Android targets
|
||||
echo "Installing Android Rust targets..."
|
||||
rustup target add armv7-linux-androideabi # for arm
|
||||
rustup target add i686-linux-android # for x86
|
||||
rustup target add aarch64-linux-android # for arm64
|
||||
rustup target add x86_64-linux-android # for x86_64
|
||||
rustup target add x86_64-unknown-linux-gnu # for linux-x86-64
|
||||
rustup target add x86_64-apple-darwin # for darwin x86_64 (if you have an Intel MacOS)
|
||||
rustup target add aarch64-apple-darwin # for darwin arm64 (if you have a M1 MacOS)
|
||||
rustup target add x86_64-pc-windows-gnu # for win32-x86-64-gnu
|
||||
rustup target add x86_64-pc-windows-msvc # for win32-x86-64-msvc
|
||||
fi
|
||||
|
||||
|
||||
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
||||
if which apt-get &> /dev/null; then
|
||||
echo "Detected 'apt' based distro!"
|
||||
|
||||
Reference in New Issue
Block a user