diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-11-06 00:40:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-06 00:40:29 +0000 |
commit | 06fbb891cf4d0cbac97cd5ed41fa465e8ed84369 (patch) | |
tree | f3a8b652f77a291bcc532c4c4589ecc03205f585 /ci/i386 | |
parent | 0e49bfb02a80c480df802f2f0a79dc2fa0de6753 (diff) | |
download | alacritty-06fbb891cf4d0cbac97cd5ed41fa465e8ed84369.tar.gz alacritty-06fbb891cf4d0cbac97cd5ed41fa465e8ed84369.zip |
Add automated i386 docker builds to travis
Diffstat (limited to 'ci/i386')
-rw-r--r-- | ci/i386/Dockerfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ci/i386/Dockerfile b/ci/i386/Dockerfile new file mode 100644 index 00000000..c9d3fc15 --- /dev/null +++ b/ci/i386/Dockerfile @@ -0,0 +1,8 @@ +FROM i386/ubuntu:latest + +ENV USER root + +RUN apt-get update && apt-get install -y cmake libfreetype6-dev libfontconfig1-dev curl + +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y +RUN /root/.cargo/bin/rustup default stable-i686-unknown-linux-gnu |