docker: Also run on Ubuntu Wily on Travis
This commit is contained in:
parent
b19da05097
commit
0bc31e5373
@ -18,6 +18,9 @@ matrix:
|
||||
- os: linux
|
||||
env: DOCKER=archlinux
|
||||
services: docker
|
||||
- os: linux
|
||||
env: DOCKER=ubuntu-wily
|
||||
services: docker
|
||||
- os: osx
|
||||
env: TESTENV=py35
|
||||
- os: linux
|
||||
|
25
misc/docker/ubuntu-wily/Dockerfile
Normal file
25
misc/docker/ubuntu-wily/Dockerfile
Normal file
@ -0,0 +1,25 @@
|
||||
FROM ubuntu:wily
|
||||
MAINTAINER Florian Bruhin <me@the-compiler.org>
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt-get -y update && \
|
||||
apt-get -y dist-upgrade && \
|
||||
apt-get -y install python3-pyqt5 python3-pyqt5.qtwebkit python-tox \
|
||||
python3-sip xvfb git python3-setuptools wget \
|
||||
herbstluftwm language-pack-en
|
||||
|
||||
RUN useradd user && mkdir /home/user && chown -R user:users /home/user
|
||||
USER user
|
||||
WORKDIR /home/user
|
||||
|
||||
ENV DISPLAY=:0
|
||||
ENV LC_ALL=en_US.UTF-8
|
||||
ENV LANG=en_US.UTF-8
|
||||
|
||||
CMD Xvfb -screen 0 800x600x24 :0 & \
|
||||
sleep 2 && \
|
||||
herbstluftwm & \
|
||||
git clone /outside qutebrowser.git && \
|
||||
cd qutebrowser.git && \
|
||||
tox -e py34
|
Loading…
Reference in New Issue
Block a user