summaryrefslogtreecommitdiffstats
path: root/ci/before_deploy.sh
blob: 8d508babc67c07d7679e1e6f989b0b43810aa2e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/bin/bash

# All files which should be added only if they changed
aux_files=("extra/completions/alacritty.bash"
           "extra/completions/alacritty.fish"
           "extra/completions/_alacritty"
           "extra/linux/alacritty.desktop"
           "extra/alacritty.info"
           "alacritty.yml")

# Output binary name
name="Alacritty-${TRAVIS_TAG}"

# Everything in this directory will be offered as download for the release
mkdir "./target/deploy"

function windows {
    choco install 7zip nuget.commandline
    nuget install WiX

    # Create zip archive
    7z a -tzip "./target/deploy/${name}-windows-portable.zip" "./target/release/alacritty.exe" \
        "./target/release/winpty-agent.exe"

    # Create msi installer
    ./WiX.*/tools/candle.exe -nologo -arch "x64" -ext WixUIExtension -ext WixUtilExtension -out \
        "target/alacritty.wixobj" "extra/windows/wix/alacritty.wxs"
    ./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"
}

function osx {
    rm -rf "./target/release" \
        && make dmg \
        && mv "./target/release/osx/Alacritty.dmg" "./target/deploy/${name}.dmg"
}

function debian {
    arch=$1

    docker pull "undeadleech/alacritty-ubuntu-${arch}" \
        && docker_tar "alacritty-ubuntu-${arch}" "ubuntu_18_04_${arch}" \
        && docker_deb "alacritty-ubuntu-${arch}" "ubuntu_18_04_${arch}" \
        && sudo chown -R $USER:$USER "./target"
}

function docker_tar {
    image=$1
    archname=$2

    docker run -v "$(pwd):/source" "undeadleech/${image}" \
        /root/.cargo/bin/cargo build --release --manifest-path /source/Cargo.toml

    tar -cvzf "./target/deploy/${name}-${archname}.tar.gz" -C "./target/release/" "alacritty"
}

function docker_deb {
    image=$1
    archname=$2

    docker run -v "$(pwd):/source" "undeadleech/${image}" sh -c \
        "cd /source && /root/.cargo/bin/cargo deb --no-build -p alacritty \
        --output ./target/deploy/${name}-${archname}.deb"
}

if [ "$TRAVIS_OS_NAME" == "osx" ]; then
    osx || exit
elif [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$ARCH" != "i386" ]; then
    debian "amd64" || exit
elif [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$ARCH" == "i386" ]; then
    debian "i386" || exit
elif [ "$TRAVIS_OS_NAME" == "windows" ]; then
    windows
fi

# Convert and add manpage if it changed
gzip -c "./extra/alacritty.man" > "./target/deploy/alacritty.1.gz" || exit

# Rename Alacritty logo to match .desktop file
cp "./extra/logo/alacritty-term.svg" "./target/deploy/Alacritty.svg" || exit

# Offer various other files
for file in "${aux_files[@]}"; do
    cp $file "./target/deploy/" || exit
done