mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
863d5581a6
To make things easier to understand for Windows users, the relationship between Alacritty and the WinPTY agent has been clarified in the documentation. This also bundles the windows agent and exe together in a zip file to make distribution for windows easier on the user.
72 lines
2.6 KiB
Bash
Executable file
72 lines
2.6 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# All files which should be added only if they changed
|
|
aux_files=("alacritty-completions.bash"
|
|
"alacritty-completions.fish"
|
|
"alacritty-completions.zsh"
|
|
"alacritty.desktop"
|
|
"alacritty.info"
|
|
"alacritty.yml")
|
|
|
|
# Get previous tag to check for changes
|
|
git fetch --tags
|
|
git fetch --unshallow
|
|
prev_tag=$(git describe --tags --abbrev=0 $TRAVIS_TAG^)
|
|
|
|
# Everything in this directory will be offered as download for the release
|
|
mkdir "./target/deploy"
|
|
|
|
# Output binary name
|
|
name="Alacritty-${TRAVIS_TAG}"
|
|
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
|
rm -rf "./target/release"
|
|
make dmg
|
|
mv "./target/release/osx/Alacritty.dmg" "./target/deploy/${name}.dmg"
|
|
elif [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$ARCH" != "i386" ]; then
|
|
docker pull undeadleech/alacritty-ubuntu
|
|
|
|
# x86_64
|
|
docker run -v "$(pwd):/source" undeadleech/alacritty-ubuntu \
|
|
/root/.cargo/bin/cargo build --release --manifest-path /source/Cargo.toml
|
|
tar -cvzf "./target/deploy/${name}-x86_64.tar.gz" -C "./target/release/" "alacritty"
|
|
|
|
# x86_64 deb
|
|
docker run -v "$(pwd):/source" undeadleech/alacritty-ubuntu \
|
|
sh -c "cd /source && \
|
|
/root/.cargo/bin/cargo deb --no-build --output ./target/deploy/${name}_amd64.deb"
|
|
|
|
# Make sure all files can be uploaded without permission errors
|
|
sudo chown -R $USER:$USER "./target"
|
|
elif [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$ARCH" == "i386" ]; then
|
|
docker pull undeadleech/alacritty-ubuntu-i386
|
|
|
|
# i386
|
|
docker run -v "$(pwd):/source" undeadleech/alacritty-ubuntu-i386 \
|
|
/root/.cargo/bin/cargo build --release --manifest-path /source/Cargo.toml
|
|
tar -cvzf "./target/deploy/${name}-i386.tar.gz" -C "./target/release/" "alacritty"
|
|
|
|
# i386 deb
|
|
docker run -v "$(pwd):/source" undeadleech/alacritty-ubuntu-i386 \
|
|
sh -c "cd /source && \
|
|
/root/.cargo/bin/cargo deb --no-build --output ./target/deploy/${name}_i386.deb"
|
|
|
|
# Make sure all files can be uploaded without permission errors
|
|
sudo chown -R $USER:$USER "./target"
|
|
elif [ "$TRAVIS_OS_NAME" == "windows" ]; then
|
|
choco install 7zip
|
|
7z a -tzip "./target/deploy/${name}-windows.zip" "./target/release/alacritty.exe" \
|
|
"./target/release/winpty-agent.exe"
|
|
fi
|
|
|
|
# Convert and add manpage if it changed
|
|
if [ -n "$(git diff $prev_tag HEAD alacritty.man)" ]; then
|
|
gzip -c "./alacritty.man" > "./target/deploy/alacritty.1.gz"
|
|
fi
|
|
|
|
# Offer extra files if they changed
|
|
for file in "${aux_files[@]}"; do
|
|
if [ -n "$(git diff $prev_tag HEAD $file)" ]; then
|
|
cp $file "./target/deploy/"
|
|
fi
|
|
done
|