aboutsummaryrefslogtreecommitdiff
path: root/ci/i386
diff options
context:
space:
mode:
authorChristian Duerr <chrisduerr@users.noreply.github.com>2018-11-14 23:47:13 +0000
committerGitHub <noreply@github.com>2018-11-14 23:47:13 +0000
commit82d0c5ea44f0f8b487c4b9856d50914ed7262fff (patch)
treea64ec3438b32bd2aed2213fd45bf5e1018bb50af /ci/i386
parent00830b3da8d4f2cebcc8738f8069db91c1a2f779 (diff)
downloadalacritty-82d0c5ea44f0f8b487c4b9856d50914ed7262fff.tar.gz
alacritty-82d0c5ea44f0f8b487c4b9856d50914ed7262fff.zip
Fix i386 CI releases
The i386 CI releases were still using x86_64 platforms for building the output binaries, as a result the produced binaries did not work properly on i386 systems. The maximum time of 50 minutes was exceeded when Alacritty tries to build for all Linux platforms, this was because it was effectively compiling Alacritty from scratch four times. By making use of the previous build artifacts, it's possible to cut this down to two compiles using the `--no-build` option of `cargo-deb`.
Diffstat (limited to 'ci/i386')
-rw-r--r--ci/i386/Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/i386/Dockerfile b/ci/i386/Dockerfile
index c9d3fc15..cdec1ec5 100644
--- a/ci/i386/Dockerfile
+++ b/ci/i386/Dockerfile
@@ -6,3 +6,4 @@ RUN apt-get update && apt-get install -y cmake libfreetype6-dev libfontconfig1-d
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
RUN /root/.cargo/bin/rustup default stable-i686-unknown-linux-gnu
+RUN /root/.cargo/bin/cargo install cargo-deb