mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-02 15:00:23 +00:00
d743c19fe2
Release Notes: - N/A
76 lines
2.1 KiB
Bash
Executable file
76 lines
2.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
# Function for displaying help info
|
|
help_info() {
|
|
echo "
|
|
Usage: ${0##*/} [options]
|
|
Build a release .tar.gz for Linux.
|
|
|
|
Options:
|
|
-h Display this help and exit.
|
|
"
|
|
}
|
|
|
|
while getopts 'h' flag
|
|
do
|
|
case "${flag}" in
|
|
h)
|
|
help_info
|
|
exit 0
|
|
;;
|
|
esac
|
|
done
|
|
|
|
export ZED_BUNDLE=true
|
|
|
|
channel=$(<crates/zed/RELEASE_CHANNEL)
|
|
version="$(cargo metadata --no-deps --manifest-path crates/zed/Cargo.toml --offline --format-version=1 | jq -r '.packages | map(select(.name == "zed"))[0].version')"
|
|
commit=$(git rev-parse HEAD | cut -c 1-7)
|
|
|
|
version_info=$(rustc --version --verbose)
|
|
host_line=$(echo "$version_info" | grep host)
|
|
target_triple=${host_line#*: }
|
|
|
|
# Build binary in release mode
|
|
cargo build --release --target "${target_triple}" --package zed
|
|
|
|
# Strip the binary of all debug symbols
|
|
# Later, we probably want to do something like this: https://github.com/GabrielMajeri/separate-symbols
|
|
strip "target/${target_triple}/release/Zed"
|
|
|
|
# Move everything that should end up in the final package
|
|
# into a temp directory.
|
|
temp_dir=$(mktemp -d)
|
|
|
|
# Binary
|
|
mkdir "${temp_dir}/bin"
|
|
cp "target/${target_triple}/release/Zed" "${temp_dir}/bin/zed"
|
|
|
|
# Icons
|
|
mkdir -p "${temp_dir}/share/icons/hicolor/512x512/apps"
|
|
cp "crates/zed/resources/app-icon-nightly.png" "${temp_dir}/share/icons/hicolor/512x512/apps/zed.png"
|
|
mkdir -p "${temp_dir}/share/icons/hicolor/1024x1024/apps"
|
|
cp "crates/zed/resources/app-icon-nightly@2x.png" "${temp_dir}/share/icons/hicolor/1024x1024/apps/zed.png"
|
|
|
|
# .desktop
|
|
mkdir -p "${temp_dir}/share/applications"
|
|
cp "crates/zed/resources/zed.desktop" "${temp_dir}/share/applications/zed.desktop"
|
|
|
|
# Licenses
|
|
cp "assets/licenses.md" "${temp_dir}/licenses.md"
|
|
|
|
# Create archive out of everything that's in the temp directory
|
|
|
|
|
|
if [[ "$channel" == "nightly" ]]; then
|
|
archive="zed-${channel}-${target_triple}.tar.gz"
|
|
elif [[ "$channel" == "dev" ]]; then
|
|
archive="zed-${channel}-${commit}-${target_triple}.tar.gz"
|
|
else
|
|
archive="zed-${version}-${target_triple}.tar.gz"
|
|
fi
|
|
|
|
rm -rf "${archive}"
|
|
tar -czvf $archive -C ${temp_dir} .
|