diff options
Diffstat (limited to 'ci/before_deploy.sh')
-rwxr-xr-x | ci/before_deploy.sh | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh new file mode 100755 index 00000000..e89a5590 --- /dev/null +++ b/ci/before_deploy.sh @@ -0,0 +1,59 @@ +#!/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" + "alacritty_macos.yml" + "alacritty_windows.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}" + +# Create macOS binary +if [ "$TRAVIS_OS_NAME" == "osx" ]; then + make dmg + mv "./target/release/osx/Alacritty.dmg" "./target/deploy/${name}.dmg" +fi + +# Create Linux binaries +if [ "$TRAVIS_OS_NAME" == "linux" ]; then + docker pull undeadleech/alacritty-ubuntu + docker run -v "$(pwd):/source" undeadleech/alacritty-ubuntu \ + /root/.cargo/bin/cargo build --release --manifest-path /source/Cargo.toml + sudo chown -R $USER:$USER "./target" + tar -cvzf "./target/deploy/${name}-$(uname -m).tar.gz" -C "./target/release/" "alacritty" + + cargo install cargo-deb + DEB=$(cargo deb --no-build) + mv "$DEB" "./target/deploy/${name}_amd64.deb" +fi + +# Create windows binary +if [ "$TRAVIS_OS_NAME" == "windows" ]; then + mv "./target/release/alacritty.exe" "./target/deploy/${name}.exe" + mv "./target/release/winpty-agent.exe" "./target/deploy/winpty-agent.exe" +fi + +# Convert and add manpage if it changed +if [ -n "$(git diff $prev_tag HEAD alacritty.man)" ]; then + gzip -z "./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 |