From 82d0c5ea44f0f8b487c4b9856d50914ed7262fff Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Wed, 14 Nov 2018 23:47:13 +0000 Subject: 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`. --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 53b754ec..ee28139a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,11 @@ rust: matrix: fast_finish: true + include: + - if: tag IS present + os: linux + rust: stable + env: ARCH=i386 allow_failures: - rust: nightly - os: windows -- cgit v1.2.3