2018-11-03 11:08:30 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# All files which should be added only if they changed
|
2019-04-02 18:58:18 -04:00
|
|
|
aux_files=("extra/completions/alacritty.bash"
|
|
|
|
"extra/completions/alacritty.fish"
|
|
|
|
"extra/completions/_alacritty"
|
|
|
|
"extra/linux/alacritty.desktop"
|
|
|
|
"extra/alacritty.info"
|
2019-01-17 04:17:26 -05:00
|
|
|
"alacritty.yml")
|
2018-11-03 11:08:30 -04:00
|
|
|
|
|
|
|
# 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
|
2019-01-07 19:16:16 -05:00
|
|
|
rm -rf "./target/release"
|
2018-11-03 11:08:30 -04:00
|
|
|
make dmg
|
|
|
|
mv "./target/release/osx/Alacritty.dmg" "./target/deploy/${name}.dmg"
|
2018-11-14 18:47:13 -05:00
|
|
|
elif [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$ARCH" != "i386" ]; then
|
|
|
|
docker pull undeadleech/alacritty-ubuntu
|
2018-11-03 11:08:30 -04:00
|
|
|
|
2018-11-05 19:40:29 -05:00
|
|
|
# x86_64
|
2018-11-03 11:08:30 -04:00
|
|
|
docker run -v "$(pwd):/source" undeadleech/alacritty-ubuntu \
|
|
|
|
/root/.cargo/bin/cargo build --release --manifest-path /source/Cargo.toml
|
2018-11-05 19:40:29 -05:00
|
|
|
tar -cvzf "./target/deploy/${name}-x86_64.tar.gz" -C "./target/release/" "alacritty"
|
2018-11-03 11:08:30 -04:00
|
|
|
|
2018-11-05 19:40:29 -05:00
|
|
|
# x86_64 deb
|
2018-11-14 18:47:13 -05:00
|
|
|
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"
|
2018-11-03 11:08:30 -04:00
|
|
|
|
2018-11-14 18:47:13 -05:00
|
|
|
# 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
|
2018-11-05 19:40:29 -05:00
|
|
|
|
|
|
|
# i386
|
2018-11-14 18:47:13 -05:00
|
|
|
docker run -v "$(pwd):/source" undeadleech/alacritty-ubuntu-i386 \
|
2018-11-05 19:40:29 -05:00
|
|
|
/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
|
2018-11-14 18:47:13 -05:00
|
|
|
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"
|
2018-11-05 19:40:29 -05:00
|
|
|
elif [ "$TRAVIS_OS_NAME" == "windows" ]; then
|
2019-03-02 13:31:14 -05:00
|
|
|
choco install 7zip nuget.commandline
|
|
|
|
nuget install WiX
|
|
|
|
|
|
|
|
# Create zip archive
|
|
|
|
7z a -tzip "./target/deploy/${name}-windows-portable.zip" "./target/release/alacritty.exe" \
|
2019-02-02 07:00:29 -05:00
|
|
|
"./target/release/winpty-agent.exe"
|
2019-03-02 13:31:14 -05:00
|
|
|
|
|
|
|
# Create msi installer
|
2019-04-01 18:41:20 -04:00
|
|
|
./WiX.*/tools/candle.exe -nologo -arch "x64" -ext WixUIExtension -ext WixUtilExtension -out "target/alacritty.wixobj" "extra/windows/wix/alacritty.wxs"
|
2019-04-02 18:58:18 -04:00
|
|
|
./WiX.*/tools/light.exe -nologo -ext WixUIExtension -ext WixUtilExtension -out "target/installer.msi" -sice:ICE61 -sice:ICE91 "target/alacritty.wixobj"
|
|
|
|
mv "target/installer.msi" "target/deploy/${name}-windows-installer.msi"
|
2018-11-03 11:08:30 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Convert and add manpage if it changed
|
2019-04-02 18:58:18 -04:00
|
|
|
if [ -n "$(git diff $prev_tag HEAD extra/alacritty.man)" ]; then
|
|
|
|
gzip -c "./extra/alacritty.man" > "./target/deploy/alacritty.1.gz"
|
2018-11-03 11:08:30 -04:00
|
|
|
fi
|
|
|
|
|
2019-04-02 18:58:18 -04:00
|
|
|
# Offer various other files
|
2018-11-03 11:08:30 -04:00
|
|
|
for file in "${aux_files[@]}"; do
|
2019-04-02 18:58:18 -04:00
|
|
|
cp $file "./target/deploy/"
|
2018-11-03 11:08:30 -04:00
|
|
|
done
|