diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-04-09 20:59:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-09 20:59:46 +0000 |
commit | 2b12b166785664eeec346883dfbc7eeadcb0f237 (patch) | |
tree | d74408012a8642d646263a87583c3a40b870d9c7 | |
parent | 56fea343ff94b23aa94f8756643c015f20517e8f (diff) | |
download | alacritty-2b12b166785664eeec346883dfbc7eeadcb0f237.tar.gz alacritty-2b12b166785664eeec346883dfbc7eeadcb0f237.zip |
Document distro support for precompiled binaries
This fixes #2273.
-rwxr-xr-x | ci/before_deploy.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 0c2b937a..98fae1bc 100755 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -29,12 +29,12 @@ elif [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$ARCH" != "i386" ]; then # 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" + tar -cvzf "./target/deploy/${name}-ubuntu_18_04-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" + /root/.cargo/bin/cargo deb --no-build --output ./target/deploy/${name}-ubuntu_18_04_amd64.deb" # Make sure all files can be uploaded without permission errors sudo chown -R $USER:$USER "./target" @@ -44,12 +44,12 @@ elif [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$ARCH" == "i386" ]; then # 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" + tar -cvzf "./target/deploy/${name}-ubuntu_18_04-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" + /root/.cargo/bin/cargo deb --no-build --output ./target/deploy/${name}-ubuntu_18_04_i386.deb" # Make sure all files can be uploaded without permission errors sudo chown -R $USER:$USER "./target" |