mirror of
https://github.com/sxyazi/yazi.git
synced 2026-05-13 16:26:49 +00:00
34 lines
1 KiB
Bash
Executable file
34 lines
1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export ARTIFACT_NAME="yazi-$1"
|
|
export YAZI_GEN_COMPLETIONS=1
|
|
|
|
# Build the target
|
|
git config --global --add safe.directory "*"
|
|
cargo build --release --locked --target "$1"
|
|
|
|
# Copy the binaries to a known location
|
|
mkdir -p "target/release"
|
|
cp "target/$1/release/ya" "target/release/ya"
|
|
cp "target/$1/release/yazi" "target/release/yazi"
|
|
|
|
# Package deb
|
|
if [[ "$ARTIFACT_NAME" == *-linux-* ]] && { [[ "$ARTIFACT_NAME" == *-aarch64-* ]] || [[ "$ARTIFACT_NAME" == *-x86_64-* ]]; }; then
|
|
cargo install cargo-deb
|
|
cargo deb -p yazi-packing --no-build --target "$1" -o "$ARTIFACT_NAME.deb"
|
|
fi
|
|
|
|
# Create the artifact
|
|
mkdir -p "$ARTIFACT_NAME/completions"
|
|
cp "target/release/ya" "$ARTIFACT_NAME"
|
|
cp "target/release/yazi" "$ARTIFACT_NAME"
|
|
cp yazi-cli/completions/* "$ARTIFACT_NAME/completions"
|
|
cp yazi-boot/completions/* "$ARTIFACT_NAME/completions"
|
|
cp README.md LICENSE "$ARTIFACT_NAME"
|
|
|
|
# Zip the artifact
|
|
if ! command -v zip &> /dev/null; then
|
|
apt-get update && apt-get install -yq zip
|
|
fi
|
|
zip -r "$ARTIFACT_NAME.zip" "$ARTIFACT_NAME"
|